1 // Emacs style mode select -*- C++ -*-
2 //-----------------------------------------------------------------------------
6 // Copyright (C) 1993-1996 by id Software, Inc.
8 // This source is available for distribution and/or modification
9 // only under the terms of the DOOM Source Code License as
10 // published by id Software. All rights reserved.
12 // The source is distributed in the hope that it will be useful,
13 // but WITHOUT ANY WARRANTY; without even the implied warranty of
14 // FITNESS FOR A PARTICULAR PURPOSE. See the DOOM Source Code License
18 // Revision 1.1 2000/02/29 18:21:05 stegerg
19 // Doom port based on ADoomPPC. Read README.AROS!
23 // System specific interface stuff.
25 //-----------------------------------------------------------------------------
39 #define MAXWADFILES 20
40 extern char* wadfiles
[MAXWADFILES
];
42 void D_AddFile (char *file
);
48 // Not a globally visible function, just included for source reference,
49 // calls all startup code, parses command line options.
50 // If not overrided by user input, calls N_AdvanceDemo.
52 void D_DoomMain (void);
54 // Called by IO functions when input is detected.
55 void D_PostEvent (event_t
* ev
);
62 void D_PageTicker (void);
63 void D_PageDrawer (void);
64 void D_AdvanceDemo (void);
65 void D_StartTitle (void);