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.
27 lines
567 B
27 lines
567 B
//+---------------------------------------------------------------------------
|
|
//
|
|
// Microsoft Windows
|
|
// Copyright (C) Microsoft Corporation, 1996 - 1997.
|
|
//
|
|
// File: CIADebug.hxx
|
|
//
|
|
// Contents: Content Index Debugging Help
|
|
//
|
|
//
|
|
// History: 26-Nov-96 KyleP Created.
|
|
//
|
|
//----------------------------------------------------------------------------
|
|
|
|
#pragma once
|
|
|
|
#if DBG == 1
|
|
|
|
DECLARE_DEBUG(cia);
|
|
# define ciaDebugOut( x ) ciaInlineDebugOut x
|
|
|
|
#else // DBG == 0
|
|
|
|
# define ciaDebugOut( x )
|
|
|
|
#endif // DBG == 1
|
|
|