//+---------------------------------------------------------------------------
//
// Microsoft Windows
// Copyright 1992 - 1998 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__