Go to the
documentation of this file.
00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015 #pragma once
00016
00017 #ifndef STRICT
00018 #define STRICT
00019 #endif
00020
00021 #ifndef WINVER // Allow use of features specific to Windows XP or later.
00022 #define WINVER 0x0501 // Change this to the appropriate value to target Windows Vista or later.
00023 #endif
00024
00025 #ifndef _WIN32_WINNT // Allow use of features specific to Windows XP or later.
00026 #define _WIN32_WINNT 0x0501 // Change this to the appropriate value to target Windows Vista or later.
00027 #endif
00028
00029 #ifndef _WIN32_WINDOWS // Allow use of features specific to Windows XP or later.
00030 #define _WIN32_WINDOWS 0x0501
00031 #endif
00032
00033 #ifndef _WIN32_IE // Allow use of features specific to IE 5.01 or later.
00034 #define _WIN32_IE 0x0501 // Change this to the appropriate value to target IE 5.5 or later.
00035 #endif
00036
00037 #include <windows.h>
00038