00001
00002
00003
00004
00005 #pragma once
00006 #pragma comment(lib, "opengl32.lib")
00007 #pragma comment(lib, "glu32.lib")
00008 #pragma comment(lib, "glaux.lib")
00009
00010 #ifndef VC_EXTRALEAN
00011 #define VC_EXTRALEAN // Exclude rarely-used stuff from Windows headers
00012 #endif
00013
00014
00015
00016 #ifndef WINVER // Allow use of features specific to Windows 95 and Windows NT 4 or later.
00017 #define WINVER 0x0400 // Change this to the appropriate value to target Windows 98 and Windows 2000 or later.
00018 #endif
00019
00020 #ifndef _WIN32_WINNT // Allow use of features specific to Windows NT 4 or later.
00021 #define _WIN32_WINNT 0x0400 // Change this to the appropriate value to target Windows 98 and Windows 2000 or later.
00022 #endif
00023
00024 #ifndef _WIN32_WINDOWS // Allow use of features specific to Windows 98 or later.
00025 #define _WIN32_WINDOWS 0x0410 // Change this to the appropriate value to target Windows Me or later.
00026 #endif
00027
00028 #ifndef _WIN32_IE // Allow use of features specific to IE 4.0 or later.
00029 #define _WIN32_IE 0x0400 // Change this to the appropriate value to target IE 5.0 or later.
00030 #endif
00031
00032 #define _ATL_CSTRING_EXPLICIT_CONSTRUCTORS // some CString constructors will be explicit
00033
00034
00035 #define _AFX_ALL_WARNINGS
00036
00037 #include <afxwin.h>
00038 #include <afxext.h>
00039 #include <afxdisp.h>
00040
00041 #include <afxdtctl.h>
00042 #ifndef _AFX_NO_AFXCMN_SUPPORT
00043 #include <afxcmn.h>
00044 #endif // _AFX_NO_AFXCMN_SUPPORT
00045