// THIS CODE AND INFORMATION IS PROVIDED "AS IS" WITHOUT WARRANTY OF // ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING BUT NOT LIMITED TO // THE IMPLIED WARRANTIES OF MERCHANTABILITY AND/OR FITNESS FOR A // PARTICULAR PURPOSE. // // Copyright 1997 - 2003 Microsoft Corporation. All Rights Reserved. // // FILE: precomp.H // // // PURPOSE: Common headers that don't change often // #pragma once // Necessary for compiling under VC. #if(!defined(WINVER) || (WINVER < 0x0500)) #undef WINVER #define WINVER 0x0500 #endif #if(!defined(_WIN32_WINNT) || (_WIN32_WINNT < 0x0500)) #undef _WIN32_WINNT #define _WIN32_WINNT 0x0500 #endif // Isolation define for using ComCtrl v6. #ifndef ISOLATION_AWARE_ENABLED #define ISOLATION_AWARE_ENABLED #endif // Required header files that shouldn't change often. #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include "COMPSTUI.H" #include #include #include #include #include // Safe character string functions to detect buffer overrun conditions: #include // Safe integer functions to detect integer overflow/underflow conditions: #include