]> icculus.org git repositories - btb/d2x.git/blob - include/args.h
allow older sdl versions
[btb/d2x.git] / include / args.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-1998 PARALLAX SOFTWARE CORPORATION.  ALL RIGHTS RESERVED.
12 */
13 /*
14  * $Source: /cvs/cvsroot/d2x/include/args.h,v $
15  * $Revision: 1.4 $
16  * $Author: bradleyb $
17  * $Date: 2001-11-05 07:39:08 $
18  * 
19  * Prototypes for accessing arguments.
20  * 
21  * $Log: not supported by cvs2svn $
22  * Revision 1.3  2001/10/19 00:31:51  bradleyb
23  * Trying to get network working on win32
24  *
25  * Revision 1.2  2001/01/24 04:29:45  bradleyb
26  * changed args_find to FindArg
27  *
28  * Revision 1.1.1.1  2001/01/19 03:30:16  bradleyb
29  * Import of d2x-0.0.8
30  *
31  * Revision 1.1.1.1  1999/06/14 22:02:08  donut
32  * Import of d1x 1.37 source.
33  *
34  * Revision 2.0  1995/02/27  11:33:09  john
35  * New version 2.0, which has no anonymous unions, builds with
36  * Watcom 10.0, and doesn't require parsing BITMAPS.TBL.
37  * 
38  * Revision 1.4  1994/07/11  16:27:28  matt
39  * Took out prototypes for netipx funcs
40  * 
41  * Revision 1.3  1994/05/11  19:45:34  john
42  * *** empty log message ***
43  * 
44  * Revision 1.2  1994/05/09  17:02:55  john
45  * Split command line parameters into arg.c and arg.h.
46  * Also added /dma, /port, /irq to digi.c
47  * 
48  * Revision 1.1  1994/05/09  16:47:49  john
49  * Initial revision
50  * 
51  * 
52  */
53
54
55
56 #ifndef _ARGS_H
57 #define _ARGS_H
58
59 extern int Num_args;                                            
60 extern char * Args[];                                           
61 extern int FindArg( char * s );
62 extern void InitArgs( int argc, char **argv );
63 extern int Inferno_verbose;
64
65 #endif