66 lines
1.9 KiB
C
66 lines
1.9 KiB
C
|
//////////////////////////////////////////////////////////////////////////////
|
||
|
//
|
||
|
// Copyright (c) 1999-2000 Microsoft Corporation
|
||
|
//
|
||
|
// Module Name:
|
||
|
// Pch.h
|
||
|
//
|
||
|
// Description:
|
||
|
// Precompiled header file.
|
||
|
//
|
||
|
// Maintained By:
|
||
|
// Geoffrey Pease (GPease) 15-OCT-1999
|
||
|
//
|
||
|
//////////////////////////////////////////////////////////////////////////////
|
||
|
|
||
|
//////////////////////////////////////////////////////////////////////////////
|
||
|
// Constant Definitions
|
||
|
//////////////////////////////////////////////////////////////////////////////
|
||
|
#define UNICODE
|
||
|
|
||
|
#if DBG==1 || defined( _DEBUG )
|
||
|
#define DEBUG
|
||
|
//
|
||
|
// Define this to change Interface Tracking
|
||
|
//
|
||
|
//#define NO_TRACE_INTERFACES
|
||
|
//
|
||
|
// 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
|
||
|
//////////////////////////////////////////////////////////////////////////////
|
||
|
#include <windows.h>
|
||
|
#include <objbase.h>
|
||
|
#include <ocidl.h>
|
||
|
#include <dispex.h>
|
||
|
#include <shlwapi.h>
|
||
|
#include <resapi.h>
|
||
|
#include <activscp.h>
|
||
|
|
||
|
extern "C" {
|
||
|
extern PLOG_EVENT_ROUTINE ClusResLogEvent;
|
||
|
}
|
||
|
|
||
|
#include "debug.h"
|
||
|
#include "CITracker.h"
|
||
|
#include "genscript.h"
|
||
|
#define cchGUID_STRING_SIZE (sizeof("{12345678-1234-1234-1234-123456789012}"))
|
||
|
|
||
|
//////////////////////////////////////////////////////////////////////////////
|
||
|
// Type Definitions
|
||
|
//////////////////////////////////////////////////////////////////////////////
|
||
|
|