| 1 |
< |
/* Copyright (c) 1997 Regents of the University of California */ |
| 2 |
< |
|
| 3 |
< |
/* SCCSid "$SunId$ LBL" */ |
| 4 |
< |
|
| 1 |
> |
/* RCSid $Id$ */ |
| 2 |
|
/* |
| 3 |
|
* Error messages for tone mapping functions. |
| 4 |
|
* Included exclusively in "tonemap.c". |
| 5 |
|
* English version. |
| 6 |
|
*/ |
| 7 |
+ |
#ifndef _RAD_TMERRMSG_H_ |
| 8 |
+ |
#define _RAD_TMERRMSG_H_ |
| 9 |
+ |
#ifdef __cplusplus |
| 10 |
+ |
extern "C" { |
| 11 |
+ |
#endif |
| 12 |
|
|
| 13 |
|
char *tmErrorMessage[] = { |
| 14 |
|
"no error", |
| 17 |
|
"invalid tone mapping", |
| 18 |
|
"cannot compute tone mapping", |
| 19 |
|
"file cannot be opened or is the wrong type", |
| 20 |
+ |
"code consistency error 1", |
| 21 |
+ |
"code consistency error 2", |
| 22 |
|
}; |
| 23 |
+ |
|
| 24 |
+ |
|
| 25 |
+ |
#ifdef __cplusplus |
| 26 |
+ |
} |
| 27 |
+ |
#endif |
| 28 |
+ |
#endif /* _RAD_TMERRMSG_H_ */ |
| 29 |
+ |
|