Sample Code
Windows Driver Samples/ OEM Printer Customization Plug-in Samples/ C++/ uniuirep/ src/ precomp.h/
//+-------------------------------------------------------------------------- // // 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 - 2005 Microsoft Corporation. All Rights Reserved. // // FILE: precomp.h // // PURPOSE: Header files that should be in the precompiled header. // //-------------------------------------------------------------------------- #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 // Required header files that shouldn't change often. #include <STDDEF.H> #include <STDLIB.H> #include <OBJBASE.H> #include <STDARG.H> #include <STDIO.H> #include <INITGUID.H> #include <WINDOWS.H> #include <WINDEF.H> #include <WINERROR.H> #include <WINBASE.H> #include <WINGDI.H> #include <commctrl.h> #include <WINDDI.H> #include <WINSPOOL.H> #include <TCHAR.H> #include <EXCPT.H> #include <ASSERT.H> #include <PRSHT.H> #include <COMPSTUI.H> #include <WINDDIUI.H> #include <PRINTOEM.H> #include <prcomoem.h> #include "resource.h" #include "devmode.h" #include "Features.h" #include "uniuirep.h" #include "debug.h" #include "intrface.h" #include <intsafe.h> // Include this file after any other standard include files // to disallow unsafe string handling functions. #include <STRSAFE.H>
Our Services
-
What our customers say about us?
Read our customer testimonials to find out why our clients keep returning for their projects.
View Testimonials