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