00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013 #ifndef __AFXWIN_H__
00014 #error include 'stdafx.h' before including this file for PCH
00015 #endif
00016
00017 #ifndef hoops_app
00018 #define hoops_app
00019
00020
00021 #include "hc.h"
00022 #include "HMFCGlobals.h"
00023
00027 #define WM_DOREALIZE (WM_USER + 0)
00028
00032 #define WMF 0
00033
00037 #define EMF 1
00038
00039
00040 class HDB;
00041 class CTDriver;
00042
00044
00045
00046
00047
00049
00054 class HMFC_API CHoopsApp : public CWinApp
00055 {
00056
00057 protected:
00058
00060 HDB* m_pHoopsDB;
00061 CTDriver *m_pCTDriver;
00062
00063 public:
00064
00065 CHoopsApp();
00066
00067
00069 HDB* GetHoopsDB() { return m_pHoopsDB; }
00070
00072 CTDriver* GetCTDriver() {return m_pCTDriver; }
00073
00074
00075
00076
00077
00078 public:
00079 virtual BOOL InitInstance();
00080 virtual int ExitInstance();
00081
00082
00083
00084
00085
00086
00087 DECLARE_MESSAGE_MAP()
00088 };
00089
00090 #endif
00091
00092