ViewVC Help
View File | Revision Log | Show Annotations | Download File | Root Listing
root/radiance/ray/src/common/tmerrmsg.h
Revision: 3.5
Committed: Fri Jun 6 16:38:47 2003 UTC (20 years, 10 months ago) by schorsch
Content type: text/plain
Branch: MAIN
Changes since 3.4: +13 -1 lines
Log Message:
*** empty log message ***

File Contents

# User Rev Content
1 schorsch 3.5 /* RCSid $Id: tmerrmsg.h,v 3.4 2003/02/25 02:47:22 greg 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.3
13 greg 3.4 #include "copyright.h"
14 greg 3.1
15     char *tmErrorMessage[] = {
16     "no error",
17     "out of memory",
18     "illegal argument value",
19     "invalid tone mapping",
20     "cannot compute tone mapping",
21     "file cannot be opened or is the wrong type",
22 greg 3.2 "code consistency error 1",
23     "code consistency error 2",
24 greg 3.1 };
25 schorsch 3.5
26    
27     #ifdef __cplusplus
28     }
29     #endif
30     #endif /* _RAD_TMERRMSG_H_ */
31