32 lines
437 B
C
32 lines
437 B
C
// dutils.h
|
|
|
|
#pragma once
|
|
|
|
/*
|
|
extern "C" void MBTrace(LPCTSTR szFormat, ...);
|
|
extern "C" void FTrace(LPCTSTR szFormat, ...);
|
|
extern "C" void Trace(LPCTSTR szFormat, ...);
|
|
|
|
#ifdef USE_FTRACE
|
|
#define TRACE FTrace
|
|
#else
|
|
|
|
#ifndef _DEBUG
|
|
#define TRACE 1 ? (void)0 : ::Trace
|
|
#else
|
|
#define TRACE ::Trace
|
|
#endif
|
|
*/
|
|
|
|
#ifdef _ASSERT
|
|
#undef _ASSERT
|
|
#endif
|
|
|
|
#include <wbemutil.h>
|
|
|
|
//#endif // #ifdef USE_FTRACE
|
|
|
|
|
|
|
|
|