wcetrace.h

来自「俄罗斯高人Mamaich的Pocket gcc编译器(运行在PocketPC上)」· C头文件 代码 · 共 37 行

H
37
字号
#ifndef _WCETRACE_H_#define _WCETRACE_H_/* Comment the following line to enable function tracing */#define CE_NOTRACE#define WCE_IO        0x0008#define WCE_NETWORK   0x0010#define WCE_SIGNALS   0x0020#define WCE_FIFOS     0x0040#define WCE_TIME      0x0080#define WCE_SYNCH     0x0100#define WCE_MALLOC    0x0200#define WCE_VM        0x0400#ifdef __cplusplusextern "C" {#endif#ifndef CE_NOTRACEvoid WCETRACEGETENV();void WCETRACESET(int trace);int  WCETRACEGET();void WCETRACE(int level, const char *fmt, ...);#else#define WCETRACEGETENV()#define WCETRACESET(trace)#define WCETRACEGET()#define WCETRACE#endif#ifdef __cplusplus}#endif#endif  /* _WCETRACE_H_ */

⌨️ 快捷键说明

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