]> icculus.org git repositories - btb/d2x.git/blob - main/desc_id.h
use the orientation parameter of g3_draw_bitmap
[btb/d2x.git] / main / desc_id.h
1 /*
2 THE COMPUTER CODE CONTAINED HEREIN IS THE SOLE PROPERTY OF PARALLAX
3 SOFTWARE CORPORATION ("PARALLAX").  PARALLAX, IN DISTRIBUTING THE CODE TO
4 END-USERS, AND SUBJECT TO ALL OF THE TERMS AND CONDITIONS HEREIN, GRANTS A
5 ROYALTY-FREE, PERPETUAL LICENSE TO SUCH END-USERS FOR USE BY SUCH END-USERS
6 IN USING, DISPLAYING,  AND CREATING DERIVATIVE WORKS THEREOF, SO LONG AS
7 SUCH USE, DISPLAY OR CREATION IS FOR NON-COMMERCIAL, ROYALTY OR REVENUE
8 FREE PURPOSES.  IN NO EVENT SHALL THE END-USER USE THE COMPUTER CODE
9 CONTAINED HEREIN FOR REVENUE-BEARING PURPOSES.  THE END-USER UNDERSTANDS
10 AND AGREES TO THE TERMS HEREIN AND ACCEPTS THE SAME BY USE OF THIS FILE.
11 COPYRIGHT 1993-1999 PARALLAX SOFTWARE CORPORATION.  ALL RIGHTS RESERVED.
12 */
13
14 /*
15  *
16  * Header file which contains string for id and timestamp information
17  *
18  */
19
20 #ifndef _DESC_ID_H
21 #define _DESC_ID_H
22
23 #define DESC_ID_LEN         40      //how long the id string can be
24 #define DESC_CHECKSUM_LEN   4       //checksum is 4 bytes
25 #define DESC_DEAD_TIME_LEN  8       //dead time is 8 bytes
26
27 #define DESC_ID_TAG         "Midway in our life's journey, I went astray"
28 #define DESC_ID_CHKSUM_TAG  "alone in a dark wood."
29 #define DESC_DEAD_TIME_TAG  "from the straight road and woke to find myself"
30
31 extern char desc_id_exit_num;
32
33 #endif /* _DESC_ID_H */