?? mesgtext.h
字號:
#ifndef __Header_mesgtext__#define __Header_mesgtext__#include "strtype.h"class EMSGDC_Class {public: char * error(const char *index); char * warning(const char *index); char * abort(const char *index); const char * message(const char *index);};static EMSGDC_Class EMSGDC_Instance;#define EMsgDC(index) String_Use(EMSGDC_Instance.error(#index))#define WMsgDC(index) String_Use(EMSGDC_Instance.warning(#index))#define AMsgDC(index) String_Use(EMSGDC_Instance.abort(#index))#define MMsgDC(index) EMSGDC_Instance.message(#index)#define EMsgDCNull() String_Use(EMSGDC_Instance.error("Null"))#define WMsgDCNull() String_Use(EMSGDC_Instance.warning("Null"))#define AMsgDCNull() String_Use(EMSGDC_Instance.abort("Null"))#define MMsgDCNull() EMSGDC_Instance.message("Null")#endif /* __Header_mesgtext__ */
?? 快捷鍵說明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -