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