⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 debug.h

📁 This the source release kit for the following system configuration(s): - AMD Alchemy(TM) DBAu1200(
💻 H
字号:
//------------------------------------------------------------------------------
// File: debug.h
//------------------------------------------------------------------------------

#ifndef __DEBUG__H
#define __DEBUG__H

void _cdecl DebugPrintF(TCHAR * szFormat, ...);

//Debug statements for Errors
#define DP_ERROR(msg)     DebugPrintF msg  // Error statements
#define DP_WARNING(msg)   DebugPrintF msg  // Warning statements

//main debugging statements
#define DP_FUNC(msg)      //DebugPrintF msg  //function calling statements
#define DP_INFO(msg)      //DebugPrintF msg  //Information statements
#define DP_DATA(msg)      //DebugPrintF msg  //Input/Output statements

#endif // __DEBUG__H

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -