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