funclib.h
来自「类PASCAL语言的编译器,LINUX环境的,我没试过是否正确.」· C头文件 代码 · 共 28 行
H
28 行
/* * Here are all funclib structures, defines, macros and return codes. */typedef enum { FUNCLIB_OK, /* The funclib execution (start/close) went OK */ FUNCLIB_PARAMETER, /* parameter error when the funclib was called */ FUNCLIB_INTERNAL, /* some kind of internal, undefined error! */ FUNCLIB_RESOURCE, /* failed getting a system resource */ FUNCLIB_MEMORY, /* failed getting enough memory from the system */ FUNCLIB_LOAD, /* failed loading the funclib */ FUNCLIB_VERSION /* the requested funclib version wasn't found */} FuncRet;
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?