mirror of https://github.com/tongzx/nt5src
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.
37 lines
460 B
37 lines
460 B
/*++
|
|
|
|
Copyright (c) 1998-1999 Microsoft Corporation
|
|
All rights reserved.
|
|
|
|
Module Name:
|
|
|
|
dbggbl.cxx
|
|
|
|
Abstract:
|
|
|
|
Debug Library Globals
|
|
|
|
Author:
|
|
|
|
Steve Kiraly (SteveKi) 24-May-1998
|
|
|
|
Revision History:
|
|
|
|
--*/
|
|
#include "precomp.hxx"
|
|
#pragma hdrstop
|
|
|
|
DEBUG_NS_BEGIN
|
|
|
|
TDebugCriticalSection GlobalCriticalSection;
|
|
TDebugHeap GlobalInternalDebugHeap;
|
|
TDebugLibarayGlobals Globals = {2, 0, 0, 0, 0, 0, kDbgCompileType};
|
|
|
|
DEBUG_NS_END
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|