ERROR.H
上传用户:tenhai
上传日期:2021-02-19
资源大小:492k
文件大小:0k
源码类别:

组合框控件

开发平台:

Visual C++

  1. #ifndef ERROR_H
  2. #define ERROR_H
  3. #define EGEN(cond, errtype, erraction) if (cond){errcode=errtype;erraction}
  4. #define ECHK(action, erraction) {action if (errcode!=0) erraction}
  5. typedef enum error_t{NOGENERATOR=1, NORIGHTPART, UNKNOWNTERM, NOSTART, MEMFUL, TBLFUL}
  6.         error_t;
  7. extern error_t errcode;
  8. extern int release(void);
  9. extern int errecovery(void);
  10. #endif