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.
31 lines
437 B
31 lines
437 B
// 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
|
|
|
|
|
|
|
|
|