home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Tricks of the Windows Gam…ming Gurus (2nd Edition)
/
Disc2.iso
/
msdn_vcb
/
samples
/
vc98
/
sdk
/
winbase
/
security
/
winnt
/
gina
/
debug.h
< prev
next >
Wrap
C/C++ Source or Header
|
1997-10-09
|
780b
|
47 lines
//+---------------------------------------------------------------------------
//
// Microsoft Windows
// Copyright 1992 - 1997 Microsoft Corporation.
//
// File: debug.h
//
// Contents:
//
// Classes:
//
// Functions:
//
// History: 8-02-94 RichardW Created
//
//----------------------------------------------------------------------------
#ifndef __DEBUG_H__
#define __DEBUG_H__
#if DBG
extern DWORD GINAInfoLevel;
#define DebugLog(x) LogEvent x
void LogEvent(long, const char *, ...);
void InitDebugSupport(void);
#define DEB_ERROR 0x00000001
#define DEB_WARN 0x00000002
#define DEB_TRACE 0x00000004
#else
#define DebugLog(x)
#endif
#endif // __DEBUG_H__