Source code of Windows XP (NT5)
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.
 
 
 
 
 
 

43 lines
727 B

/*++
Copyright (c) 1998-1999 Microsoft Corporation
All rights reserved.
Module Name:
dbggbl.hxx
Abstract:
Debug globals header file
Author:
Steve Kiraly (SteveKi) 24-May-1998
Revision History:
--*/
#ifndef _DBGGBL_HXX_
#define _DBGGBL_HXX_
DEBUG_NS_BEGIN
struct TDebugLibarayGlobals
{
UINT MajorVersion;
UINT MinorVersion;
UINT DebugMask;
UINT DebugDevices;
UINT DisplayLibraryErrors;
PVOID DebugMsgSingleton;
UINT CompiledCharType;
};
extern TDebugCriticalSection GlobalCriticalSection;
extern TDebugHeap GlobalInternalDebugHeap;
extern TDebugLibarayGlobals Globals;
DEBUG_NS_END
#endif // _DBGGBL_HXX_