////////////////////////////////////////////////////////////////////////////// // // Copyright (c) 2000-2001 Microsoft Corporation // // Module Name: // Pch.h // // Description: // Precompiled header file. // Include file for standard system include files, or project specific // include files that are used frequently, but are changed infrequently. // // Maintained By: // Galen Barbee (GalenB) 14-MAY-2000 // ////////////////////////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////////////////////// // Constant Definitions ////////////////////////////////////////////////////////////////////////////// #ifndef UNICODE #define UNICODE #endif #ifndef _UNICODE #define _UNICODE #endif #if DBG==1 || defined( _DEBUG ) #define DEBUG // // Define this to pull in the SysAllocXXX functions. Requires linking to // OLEAUT32.DLL // #define USES_SYSALLOCSTRING #endif // DBG==1 || _DEBUG ////////////////////////////////////////////////////////////////////////////// // Forward Class Declarations ////////////////////////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////////////////////// // External Class Declarations ////////////////////////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////////////////////// // Include Files ////////////////////////////////////////////////////////////////////////////// #pragma warning (disable: 4514) // Unreferenced inline function removed #pragma warning (disable: 4201) // Nameless union/struct #pragma warning (disable: 4706) // Assignment within conditional expression #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include "resource.h" #include "MessageBox.h" #include "WaitCursor.h" ////////////////////////////////////////////////////////////////////////////// // Type Definitions ////////////////////////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////////////////////// // Global Definitions ////////////////////////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////////////////////// // Constants ////////////////////////////////////////////////////////////////////////////// #define HR_S_RPC_S_SERVER_UNAVAILABLE MAKE_HRESULT( 0, FACILITY_WIN32, RPC_S_SERVER_UNAVAILABLE ) // (jfranco, bug #377545) // Limiting user name lengths according to "Naming Properties" and "Example Code for Creating a User" // topics under Active Directory in MSDN #define MAX_USERNAME_LENGTH 20