63 lines
2 KiB
C
63 lines
2 KiB
C
//////////////////////////////////////////////////////////////////////////////
|
|
//
|
|
// Copyright (c) 2000 Microsoft Corporation
|
|
//
|
|
// Module Name:
|
|
// pch.h
|
|
//
|
|
// Description:
|
|
// Precompiled header file.
|
|
//
|
|
// Maintained By:
|
|
// Geoffrey Pease (GPease) 22-JAN-2000
|
|
// Vijay Vasu (VVasu) 22-JAN-2000
|
|
// Galen Barbee (GalenB) 22-JAN-2000
|
|
// Cristian Scutaru (CScutaru) 22-JAN-2000
|
|
// David Potter (DavidP) 22-JAN-2000
|
|
//
|
|
//////////////////////////////////////////////////////////////////////////////
|
|
|
|
//////////////////////////////////////////////////////////////////////////////
|
|
// Constant Definitions
|
|
//////////////////////////////////////////////////////////////////////////////
|
|
#define UNICODE
|
|
|
|
#if DBG==1 || defined( _DEBUG )
|
|
#define DEBUG
|
|
// Define these to change Interface Tracking
|
|
//#define NO_TRACE_INTERFACES
|
|
//#define NOISY_TRACE_INTERFACES
|
|
//#define USES_SYSALLOCSTRING
|
|
#endif // DBG==1
|
|
|
|
//////////////////////////////////////////////////////////////////////////////
|
|
// Forward Class Declarations
|
|
//////////////////////////////////////////////////////////////////////////////
|
|
|
|
//////////////////////////////////////////////////////////////////////////////
|
|
// External Class Declarations
|
|
//////////////////////////////////////////////////////////////////////////////
|
|
|
|
//////////////////////////////////////////////////////////////////////////////
|
|
// Include Files
|
|
//////////////////////////////////////////////////////////////////////////////
|
|
#include <windows.h>
|
|
#include <objbase.h>
|
|
#include <ocidl.h>
|
|
#include <shlwapi.h>
|
|
|
|
#include <common.h>
|
|
#include <debug.h>
|
|
#include <citracker.h>
|
|
#include <guids.h>
|
|
|
|
//////////////////////////////////////////////////////////////////////////////
|
|
// Type Definitions
|
|
//////////////////////////////////////////////////////////////////////////////
|
|
|
|
//////////////////////////////////////////////////////////////////////////////
|
|
// Global Definitions
|
|
//////////////////////////////////////////////////////////////////////////////
|
|
extern HINSTANCE g_hInstance;
|
|
extern LONG g_cObjects;
|