debug.h
来自「evc浏览器编程示例」· C头文件 代码 · 共 26 行
H
26 行
/*+++
//
//
//
//
//
----*/
#ifndef _DEBUG_H_FILE_
#define _DEBUG_H_FILE_
#define DEBUG
#undef RETAILMSG
#define RETAILMSG(cond,printf_exp) ((TRUE)?(LogDBGFile printf_exp),1:0)
/*
#undef DEBUGMSG
#define DEBUGMSG(cond,printf_exp) ((TRUE )?(LogDBGFile printf_exp),1:0)
#undef ERRORMSG
#define ERRORMSG(cond,printf_exp) ((TRUE )?(LogDBGFile printf_exp),1:0)
*/
extern void LogDBGFile(LPCWSTR lpszFmt,...);
#endif _DEBUG_H_FILE_
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?