ViewVC Help
View File | Revision Log | Show Annotations | Download File | Root Listing
root/radiance/ray/src/util/setscan.h
Revision: 2.3
Committed: Fri Jun 27 11:32:12 2003 UTC (20 years, 9 months ago) by schorsch
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 2.2: +16 -1 lines
Log Message:
Instrumented headers against multiple inclusion and for use from C++.
Continued ANSIfication.

File Contents

# User Rev Content
1 schorsch 2.3 /* RCSid: $Id: setscan.h,v 2.2 2003/02/22 02:07:30 greg Exp $ */
2 greg 1.1 /*
3     * Defines for programs using setscan()
4     */
5 schorsch 2.3 #ifndef _RAD_SETSCAN_H_
6     #define _RAD_SETSCAN_H_
7     #ifdef __cplusplus
8     extern "C" {
9     #endif
10    
11 greg 1.1
12     #define ANGLE short
13     #define AEND (-1)
14 schorsch 2.3
15     int setscan(register ANGLE *ang, register char *arg);
16    
17    
18     #ifdef __cplusplus
19     }
20     #endif
21     #endif /* _RAD_SETSCAN_H_ */
22