msg.h
来自「htp是一个HTML预处理器。页面可以用htp扩展的类HTML的宏编写。这可以简」· C头文件 代码 · 共 46 行
H
46 行
/*//// msg.h//// Copyright (c) 1995-96 Jim Nelson. Permission to distribute// granted by the author. No warranties are made on the fitness of this// source code.//*/#ifndef MSG_H#define MSG_H/*// message severity levels*/#define MSG_ERROR (2)#define MSG_WARNING (1)#define MSG_INFO (0)/*// set the printable message level ... if the message being written// does not meet the level, it is not printed*/void SetMessageSeverityLevel(uint level);/*// error/warning/info message display function*/#ifndef DUMB_MSG_PROTOTYPEvoid HtpMsg(uint severityLevel, TEXTFILE *textFile, const char *format, ...);#endif/*// debug message display, which also will dump to disk*/void DebugInit(const char *debugMsgFilename);void DebugTerminate(void);#ifndef DUMB_MSG_PROTOTYPEvoid DebugMsg(const char *format, ...);#endif#endif
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?