]> icculus.org git repositories - btb/d2x.git/blob - main/desc_id.h
Visual C, PocketPC fixes
[btb/d2x.git] / main / desc_id.h
1 /* $Id: desc_id.h,v 1.2 2003-10-10 09:36:34 btb Exp $ */
2 /*
3 THE COMPUTER CODE CONTAINED HEREIN IS THE SOLE PROPERTY OF PARALLAX
4 SOFTWARE CORPORATION ("PARALLAX").  PARALLAX, IN DISTRIBUTING THE CODE TO
5 END-USERS, AND SUBJECT TO ALL OF THE TERMS AND CONDITIONS HEREIN, GRANTS A
6 ROYALTY-FREE, PERPETUAL LICENSE TO SUCH END-USERS FOR USE BY SUCH END-USERS
7 IN USING, DISPLAYING,  AND CREATING DERIVATIVE WORKS THEREOF, SO LONG AS
8 SUCH USE, DISPLAY OR CREATION IS FOR NON-COMMERCIAL, ROYALTY OR REVENUE
9 FREE PURPOSES.  IN NO EVENT SHALL THE END-USER USE THE COMPUTER CODE
10 CONTAINED HEREIN FOR REVENUE-BEARING PURPOSES.  THE END-USER UNDERSTANDS
11 AND AGREES TO THE TERMS HEREIN AND ACCEPTS THE SAME BY USE OF THIS FILE.
12 COPYRIGHT 1993-1999 PARALLAX SOFTWARE CORPORATION.  ALL RIGHTS RESERVED.
13 */
14
15 /*
16  *
17  * Header file which contains string for id and timestamp information
18  *
19  * Old Log:
20  * Revision 1.1  1995/05/16  15:55:53  allender
21  * Initial revision
22  *
23  * Revision 2.0  1995/02/27  11:29:38  john
24  * New version 2.0, which has no anonymous unions, builds with
25  * Watcom 10.0, and doesn't require parsing BITMAPS.TBL.
26  *
27  * Revision 1.3  1994/10/19  09:52:57  allender
28  * Added variable for bogus error number return when game exits
29  *
30  * Revision 1.2  1994/10/18  16:43:52  allender
31  * Added constants for id and time stamping
32  *
33  * Revision 1.1  1994/10/17  09:56:47  allender
34  * Initial revision
35  * Header for checksum stuff - No idea what for.
36  *
37  *
38  */
39
40 #ifndef _DESC_ID_H
41 #define _DESC_ID_H
42
43 #define DESC_ID_LEN         40      //how long the id string can be
44 #define DESC_CHECKSUM_LEN   4       //checksum is 4 bytes
45 #define DESC_DEAD_TIME_LEN  8       //dead time is 8 bytes
46
47 #define DESC_ID_TAG         "Midway in our life's journey, I went astray"
48 #define DESC_ID_CHKSUM_TAG  "alone in a dark wood."
49 #define DESC_DEAD_TIME_TAG  "from the straight road and woke to find myself"
50
51 extern char desc_id_exit_num;
52
53 #endif /* _DESC_ID_H */