Update the changelog
[opencv] / apps / Hawk / CVEiCL / EiC / src / error.h
1 #ifndef ERRORH_
2 #define ERRORH_
3
4 /* error handling  error.c
5 ---------------------------*/
6 void EiC_error(char *, ...);
7 int EiC_match(int t, char * m);
8 void EiC_warningerror(char *, ...);
9 void EiC_clear_err_msgs(void);
10 void EiC_formatMessage(char *,...);
11
12
13 /* error handling  globals
14 ---------------------------*/
15 extern int EiC_ParseError;          /* if 1 an error has occured */
16 extern int EiC_ErrorRecover;       /* if 1 attempting to recover from error*/
17 extern int EiC_errs;           /* Number of errors and warnings */
18
19 extern void (*EiC_messageDisplay)(char *);  /* pointer function to
20                                              * message Display
21                                              * function
22                                              */
23
24 #endif