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.
34 lines
637 B
34 lines
637 B
//+---------------------------------------------------------------------------
|
|
//
|
|
// Microsoft Windows
|
|
// Copyright (C) Microsoft Corporation, 1991 - 1992.
|
|
//
|
|
// File: CIDEBUG.HXX
|
|
//
|
|
// Contents: Content Index Debugging Help
|
|
//
|
|
//
|
|
// History: 02-Mar-91 BartoszM Created.
|
|
//
|
|
//----------------------------------------------------------------------------
|
|
|
|
#pragma once
|
|
|
|
#if CIDBG == 1
|
|
|
|
DECLARE_DEBUG(web);
|
|
# define webDebugOut( x ) webInlineDebugOut x
|
|
|
|
#else // CIDBG == 0
|
|
|
|
# define webDebugOut( x )
|
|
|
|
#endif // CIDBG == 1
|
|
|
|
// Debugging Flags
|
|
|
|
|
|
#define DEB_NEVER (1 << 31)
|
|
|
|
// Enum used for BackDoor commands
|
|
|