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.
28 lines
590 B
28 lines
590 B
//+---------------------------------------------------------------------------
|
|
//
|
|
// Microsoft Windows
|
|
// Copyright (C) Microsoft Corporation, 1996 - 1997.
|
|
//
|
|
// File: gibdebug.hxx
|
|
//
|
|
// Contents: Query Local C++ Header File
|
|
//
|
|
// History: 96/Jan/3 DwightKr Created
|
|
//
|
|
//----------------------------------------------------------------------------
|
|
|
|
#pragma once
|
|
|
|
#if CIDBG == 1
|
|
|
|
DECLARE_DEBUG(ciGib)
|
|
#define ciGibDebugOut( x ) ciGibInlineDebugOut x
|
|
|
|
#define DEB_GIB_REQUEST 0x00010000
|
|
|
|
#else // CIDBG == 0
|
|
|
|
#define ciGibDebugOut( x )
|
|
|
|
#endif // CIDBG
|
|
|