/*++ Copyright (c) 2003 Microsoft Corporation. All rights reserved. --*/ #ifndef __TRACE_H__ #define __TRACE_H__ #ifdef _DEBUG VOID DebugPrint (TCHAR *Format, ...); #define DEBUGPRINT(x) DebugPrint x #else #define DEBUGPRINT(x) #endif #endif // __TRACE_H__