debug.cpp

来自「pppoe client」· C++ 代码 · 共 16 行

CPP
16
字号

//********************************************************************
//	日期:	2004/08/24 - 24:8:2004   18:08
//	名前:	tiamo
//	描述:	debug
//*********************************************************************

#include "Stdafx.h"

// when use checked build,you can modify those vars to control what debug info will be printed

// this control debug info will be printed or not
BOOLEAN g_bDebugEnabled = TRUE;

// this control what level debug info will be printed,only when the level bits are set,and debug is enabled
ULONG g_ulDebugLevel = DBG_INFO | DBG_ERROR | DBG_WARNING;

⌨️ 快捷键说明

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