Revision: | 3.6 |
Committed: | Fri Jun 27 06:53:22 2003 UTC (21 years, 10 months ago) by greg |
Content type: | text/plain |
Branch: | MAIN |
CVS Tags: | rad5R4, rad5R2, rad4R2P2, rad5R0, rad5R1, rad3R7P2, rad3R7P1, rad4R2, rad4R1, rad4R0, rad3R6, rad3R6P1, rad3R8, rad3R9, rad4R2P1, rad5R3, HEAD |
Changes since 3.5: | +1 -3 lines |
Log Message: | Broke standard.h into rtio.h, rterror.h, rtmath.h, and rtmisc.h |
# | User | Rev | Content |
---|---|---|---|
1 | greg | 3.6 | /* RCSid $Id: tmerrmsg.h,v 3.5 2003/06/06 16:38:47 schorsch Exp $ */ |
2 | greg | 3.1 | /* |
3 | * Error messages for tone mapping functions. | ||
4 | * Included exclusively in "tonemap.c". | ||
5 | * English version. | ||
6 | greg | 3.3 | */ |
7 | schorsch | 3.5 | #ifndef _RAD_TMERRMSG_H_ |
8 | #define _RAD_TMERRMSG_H_ | ||
9 | #ifdef __cplusplus | ||
10 | extern "C" { | ||
11 | #endif | ||
12 | greg | 3.1 | |
13 | char *tmErrorMessage[] = { | ||
14 | "no error", | ||
15 | "out of memory", | ||
16 | "illegal argument value", | ||
17 | "invalid tone mapping", | ||
18 | "cannot compute tone mapping", | ||
19 | "file cannot be opened or is the wrong type", | ||
20 | greg | 3.2 | "code consistency error 1", |
21 | "code consistency error 2", | ||
22 | greg | 3.1 | }; |
23 | schorsch | 3.5 | |
24 | |||
25 | #ifdef __cplusplus | ||
26 | } | ||
27 | #endif | ||
28 | #endif /* _RAD_TMERRMSG_H_ */ | ||
29 |