/*++ 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 all filters --*/ #pragma once // // Annotate this as a usermode driver for static analysis // #include _Analysis_mode_(_Analysis_code_type_user_driver_) // // Standard Annotation Language include // #include // // Windows includes // #ifndef WIN32_LEAN_AND_MEAN #define WIN32_LEAN_AND_MEAN #endif // WIN32_LEAN_AND_MEAN #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 // // WCS Includes // #include // // Filter pipeline includes // #include #include #include #include // // Standard library includes // #include #include #include #include #include // // Commonly used namespaces // using namespace std; using namespace Gdiplus; // // String safe includes - included last to prevent build warnings // #include #include "common.ver"