1234567891011121314151617181920212223 |
- // CheckBoxExt.h: interface for the CCheckBoxExt class.
- //
- //////////////////////////////////////////////////////////////////////
- class CCheckBoxExt
- {
- public:
- CCheckBoxExt();
- virtual ~CCheckBoxExt();
- static WNDPROC m_cWndProc;
- static int pos;
- static LRESULT DefWindowProc( HWND hWnd, UINT message, WPARAM wParam, LPARAM lParam );
- static void OnPaint( CWnd *pWnd );
- };
|