Revision: | 2.4 |
Committed: | Mon Jul 14 22:24:00 2003 UTC (21 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.3: | +13 -1 lines |
Log Message: | Instrumented headers against multiple inclusion and for use from C++. Moved includes in headers out of "C" scope. |
# | User | Rev | Content |
---|---|---|---|
1 | schorsch | 2.4 | /* RCSid: $Id: pict.h,v 2.3 2003/02/22 02:07:27 greg Exp $ */ |
2 | greg | 1.1 | /* |
3 | greg | 2.3 | Header file for ra_pict.h |
4 | greg | 1.1 | */ |
5 | |||
6 | schorsch | 2.4 | #ifndef _RAD_PICT_H_ |
7 | #define _RAD_PICT_H_ | ||
8 | |||
9 | #ifdef __cplusplus | ||
10 | extern "C" { | ||
11 | #endif | ||
12 | |||
13 | greg | 1.1 | #define HEADER_SIZE 512 |
14 | #define PICT_picVersion 0x0011 | ||
15 | #define PICT_reservedHeader 0x0C00 | ||
16 | #define PICT_clipRgn 0x0001 | ||
17 | #define PICT_EndOfPicture 0x00FF | ||
18 | #define PICT_PackBitsRect 0x0098 | ||
19 | #define PICT_Pack32BitsRect 0x009A | ||
20 | schorsch | 2.4 | |
21 | #ifdef __cplusplus | ||
22 | } | ||
23 | #endif | ||
24 | #endif /* _RAD_PICT_H_ */ |