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