/*++ Copyright (c) 2005 Microsoft Corporation All rights reserved. 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. File Name: precomp.h Abstract: Precompiled header for UI plugin module. --*/ #pragma once // // Annotate this as a usermode driver for static analysis // #include _Analysis_mode_(_Analysis_code_type_user_driver_) // // Standard Annotation Language include // #include // // Prefast warning suppression macros // #include // // Windows includes // #ifndef WIN32_LEAN_AND_MEAN #define WIN32_LEAN_AND_MEAN #endif // WIN32_LEAN_AND_MEAN #include #include #include #include // // COM includes // #include #include // // ATL Includes // #include #pragma warning (push) #pragma warning (disable:4458) // // GDIPlus includes // #include #pragma warning (pop) // // MSXML includes // #include // // Standard library includes // #include #include #include #include #include #include #include #include #include // // Commonly used namespaces // using namespace std; using namespace Gdiplus; // // StrSafe.h needs to be included last to disallow bad string functions. // #include #define E_ELEMENT_NOT_FOUND HRESULT_FROM_WIN32(ERROR_NOT_FOUND)