///////////////////////////////////////////////////////////////////////////////
// Copyright (c) Winnov L.P., 1996.  All rights reserved
// debug.h: Debug mode header
///////////////////////////////////////////////////////////////////////////////

#ifndef _DEBUG_INCLUDED
#define _DEBUG_INCLUDED

#include <tchar.h>

#ifdef _DEBUG
#define STATIC
#else
#define STATIC static
#endif

#ifdef __cplusplus
extern "C" {
#endif  /* __cplusplus */

#ifdef WNV_DBG
extern void TraceString (char *pStr);
extern void TraceWString (PWCHAR pWStr);
#else
#define TraceString(pStr)
#define TraceWString(pWStr)
#endif

extern void TraceStringAlways (void);
extern void TraceInt (int n);
extern void TraceLong (DWORD dw);
extern void TraceBegin (void);

#ifdef __cplusplus
}
#endif

#endif //ndef _DEBUG_INCLUDED
//028900000000tCur
