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