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.
23 lines
475 B
23 lines
475 B
/****************************************************************************
|
|
*
|
|
* Copyright (c)1997-1999 Microsoft Corporation, All Rights Reserved
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
****************************************************************************/
|
|
|
|
#ifndef __TRACE_H__
|
|
#define __TRACE_H__
|
|
|
|
#ifdef _DEBUG
|
|
void __cdecl Trace(LPSTR lprgchFormat, ...);
|
|
#else
|
|
inline void __cdecl Trace(LPSTR /*lprgchFormat*/, ...) {}
|
|
#endif //_DEBUG
|
|
|
|
#endif //__TRACE_H__
|
|
|