ERROR.H
资源名称:ictprop.rar [点击查看]
上传用户:tenhai
上传日期:2021-02-19
资源大小:492k
文件大小:0k
源码类别:
组合框控件
开发平台:
Visual C++
- #ifndef ERROR_H
- #define ERROR_H
- #define EGEN(cond, errtype, erraction) if (cond){errcode=errtype;erraction}
- #define ECHK(action, erraction) {action if (errcode!=0) erraction}
- typedef enum error_t{NOGENERATOR=1, NORIGHTPART, UNKNOWNTERM, NOSTART, MEMFUL, TBLFUL}
- error_t;
- extern error_t errcode;
- extern int release(void);
- extern int errecovery(void);
- #endif