00001
00034 #pragma once
00035
00036
00037
00038 #ifndef WINVER // Allow use of features specific to Windows XP or later.
00039 #define WINVER 0x0501 // Change this to the appropriate value to target other versions of Windows.
00040 #endif
00041
00042 #ifndef _WIN32_WINNT // Allow use of features specific to Windows XP or later.
00043 #define _WIN32_WINNT 0x0501 // Change this to the appropriate value to target other versions of Windows.
00044 #endif
00045
00046 #ifndef _WIN32_WINDOWS // Allow use of features specific to Windows 98 or later.
00047 #define _WIN32_WINDOWS 0x0410 // Change this to the appropriate value to target Windows Me or later.
00048 #endif
00049
00050 #ifndef _WIN32_IE // Allow use of features specific to IE 6.0 or later.
00051 #define _WIN32_IE 0x0600 // Change this to the appropriate value to target other versions of IE.
00052 #endif
00053
00054 #define WIN32_LEAN_AND_MEAN // Exclude rarely-used stuff from Windows headers
00055
00056 #include <windows.h>
00057
00058
00059 #pragma warning(push) // disable for this header only
00060 #pragma warning(disable:4312)
00061
00062 #include <streams.h>
00063 #pragma warning(pop) // restore original warning level