error C2065: 'TRACE' : undeclared identifier

//   file   debug.h
#ifndef   __DEBUG_H__
#define   __DEBUG_H__

#ifdef   _DEBUG

void   _trace(char   *fmt,   ...);

#define   ASSERT(x)   {if(!(x))   _asm{int   0x03}}
#define   VERIFY(x)   {if(!(x))   _asm{int   0x03}}     //   译注:为调试版本时产生中断有效

#else
#define   ASSERT(x)
#define   VERIFY(x)   x //   译注:为发行版本时不产生中断
#endif

#ifdef   _DEBUG
#define   TRACE   _trace

#else
inline   void   _trace(LPCTSTR   fmt,   ...)   {   }
#define   TRACE     1   ?   (void)0   :   _trace
#endif

#endif   //   __DEBUG_H__


//   file   debug.cpp
#ifdef   _DEBUG
#include   <stdio.h>
#include   <stdarg.h>
#include   <windows.h>

void   _trace(char   *fmt,   ...)
{
char   out[1024];
va_list   body;
va_start(body,   fmt);
vsprintf(out,   fmt,   body); //   译注:格式化输入的字符串   fmtt
va_end(body);                               //               到输出字符串   ou
OutputDebugString(out); //   译注:输出格式化后的字符串到调试器
}
#endif 

参考:http://topic.csdn.net/t/20030121/10/1378266.html

你可能感兴趣的:(c,list,File)