1234567891011121314151617181920212223242526 |
- // SampleDlg.h: interface for the SampleDlg class.
- //
- //////////////////////////////////////////////////////////////////////
- class SampleDlg : public MyDlg
- {
- public:
- SampleDlg();
- virtual ~SampleDlg();
- void BtnClick(WPARAM wParam, LPARAM lParam);
- void Init();
- void Destory();
- BOOL PreTransMsg(MSG* pMsg);
- void OnFSCommand(LPCTSTR command, LPCTSTR args);
- };
|