// ====================================================================== // // test_app.h : main header file for the application // #ifndef __AFXWIN_H__ #error include 'stdafx.h' before including this file for PCH #endif #include "resource.h" // main symbols class CUsbappApp : public CWinApp { public: HANDLE hDrvrHnd; PVOID pTestDesc; DWORD dwStatus; CUsbappApp(); // Overrides // ClassWizard generated virtual function overrides //{{AFX_VIRTUAL(CUsbappApp) public: virtual BOOL InitInstance(); virtual int ExitInstance(); virtual BOOL InitApplication(); //}}AFX_VIRTUAL // Implementation //{{AFX_MSG(CUsbappApp) afx_msg void OnAppAbout(); afx_msg void OnInitTest(); afx_msg void OnGetdesDevice(); afx_msg void OnSetOne(); afx_msg void OnSetTwo(); afx_msg void OnGetOne(); afx_msg void OnGetTwo(); //}}AFX_MSG DECLARE_MESSAGE_MAP() };