You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
651 B
26 lines
651 B
//////////////////////////////////////////////////////////////////////////////
|
|
//
|
|
// Copyright (c) 1999-2000 Microsoft Corporation
|
|
//
|
|
// Module Name:
|
|
// Dll.h
|
|
//
|
|
// Description:
|
|
// DLL globals definitions and macros.
|
|
//
|
|
// Maintained By:
|
|
// Geoffrey Pease (GPease) 22-NOV-1999
|
|
//
|
|
//////////////////////////////////////////////////////////////////////////////
|
|
|
|
#pragma once
|
|
|
|
//
|
|
// DLL Globals
|
|
//
|
|
extern HINSTANCE g_hInstance;
|
|
extern LONG g_cObjects;
|
|
extern LONG g_cLock;
|
|
extern TCHAR g_szDllFilename[ MAX_PATH ];
|
|
|
|
extern LPVOID g_GlobalMemoryList; // Global memory tracking list
|