forked from ITA-Solar/rh
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy patherror.h
More file actions
27 lines (15 loc) · 804 Bytes
/
error.h
File metadata and controls
27 lines (15 loc) · 804 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
/* ---------------------------------------- error.h -----------------
Version: rh2.0
Author: Han Uitenbroek (huitenbroek@nso.edu)
Last modified: Wed Dec 8 14:57:23 1999 --
-------------------------- ----------RH-- */
#ifndef __ERROR_H__
#define __ERROR_H__
/* --- Defines error numbers, messages and associated actions -- ---- */
/* ------- begin -------------------------- error.h ----------------- */
enum errorlevel {MESSAGE, WARNING, ERROR_LEVEL_1, ERROR_LEVEL_2};
/* --- Associated function prototypes -- -------------- */
void Error(enum errorlevel level, const char *routineName,
const char *messageStr);
#endif /* !__ERROR_H__ */
/* ------- end ---------------------------- error.h ----------------- */