1 Star 1 Fork 1

yicao/pboc3.0

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
error.h 516 Bytes
一键复制 编辑 原始数据 按行查看 历史
#ifndef ERROR_H
#define ERROR_H
typedef struct error {
int Ecode;
#define ERROR_PATH_MAX 128
char Path[ERROR_PATH_MAX];
int Line;
#define ERROR_STRING_MAX 128
char String[ERROR_STRING_MAX];
}Error;
struct error_interface {
int (*Set)(Error *err, const char *file, int line, int ecode, const char *string);
char *(*FullString)(const Error *err);
char *(*String)(const Error *err);
void (*FreeString)(char *string);
};
extern const struct error_interface moduleError;
#endif
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/yicao/pboc3.0.git
git@gitee.com:yicao/pboc3.0.git
yicao
pboc3.0
pboc3.0
master

搜索帮助