]> icculus.org git repositories - btb/d2x.git/blob - include/args.h
allow arbitrary resolutions to be specified on command line (d1x r1.2, r1.29, r1...
[btb/d2x.git] / include / args.h
1 /* $Id: args.h,v 1.5 2004-05-19 21:20:06 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-1998 PARALLAX SOFTWARE CORPORATION.  ALL RIGHTS RESERVED.
13 */
14 /*
15  *
16  * Prototypes for accessing arguments.
17  *
18  * Old Log:
19  * Revision 1.1  1995/05/16  15:54:24  allender
20  * Initial revision
21  *
22  * Revision 2.0  1995/02/27  11:33:09  john
23  * New version 2.0, which has no anonymous unions, builds with
24  * Watcom 10.0, and doesn't require parsing BITMAPS.TBL.
25  *
26  * Revision 1.4  1994/07/11  16:27:28  matt
27  * Took out prototypes for netipx funcs
28  *
29  * Revision 1.3  1994/05/11  19:45:34  john
30  * *** empty log message ***
31  *
32  * Revision 1.2  1994/05/09  17:02:55  john
33  * Split command line parameters into arg.c and arg.h.
34  * Also added /dma, /port, /irq to digi.c
35  *
36  * Revision 1.1  1994/05/09  16:47:49  john
37  * Initial revision
38  *
39  *
40  */
41
42
43 #ifndef _ARGS_H
44 #define _ARGS_H
45
46 extern int Num_args;
47 extern char *Args[];
48 extern int FindArg(char *s);
49 extern int FindResArg(char *prefix, int *sw, int *sh);
50 extern void InitArgs(int argc, char **argv);
51 extern int Inferno_verbose;
52
53 #endif