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