00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011 #pragma once
00012
00013
00014
00015
00016 #if defined(_WIN32)
00017 # define WIN32_LEAN_AND_MEAN // Exclude rarely-used stuff from Windows headers
00018
00019
00020 # ifndef VC_EXTRALEAN
00021 # define VC_EXTRALEAN // Exclude rarely-used stuff from Windows headers
00022 # endif
00023
00024
00025
00026 # ifndef WINVER // Allow use of features specific to Windows 95 and Windows NT 4 or later.
00027 # define WINVER 0x0500 // Change this to the appropriate value to target Windows 98 and Windows 2000 or later.
00028 # endif
00029
00030 # ifndef _WIN32_WINNT // Allow use of features specific to Windows NT 4 or later.
00031 # define _WIN32_WINNT 0x0500 // Change this to the appropriate value to target Windows 98 and Windows 2000 or later.
00032 # endif
00033
00034 # ifndef _WIN32_WINDOWS // Allow use of features specific to Windows 98 or later.
00035 # define _WIN32_WINDOWS 0x0500 // Change this to the appropriate value to target Windows Me or later.
00036 # endif
00037
00038 # ifndef _WIN32_IE // Allow use of features specific to IE 4.0 or later.
00039 # define _WIN32_IE 0x0600 // Change this to the appropriate value to target IE 5.0 or later.
00040 # endif
00041
00042 #endif // windows