1234567891011121314151617181920212223 |
- // ComboBoxExt.h: interface for the CComboBoxExt class.
- //
- //////////////////////////////////////////////////////////////////////
- #if !defined(AFX_COMBOBOXEXT_H__8B679420_1094_4C22_92BE_6C4863E02A07__INCLUDED_)
- #define AFX_COMBOBOXEXT_H__8B679420_1094_4C22_92BE_6C4863E02A07__INCLUDED_
- #if _MSC_VER > 1000
- #pragma once
- #endif // _MSC_VER > 1000
- 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 );
- };
- #endif // !defined(AFX_COMBOBOXEXT_H__8B679420_1094_4C22_92BE_6C4863E02A07__INCLUDED_)
|