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
20 //-----------------------------------------------------------------------------
25 // Used by ST StatusBar stuff.
26 #define AM_MSGHEADER (('a'<<24)+('m'<<16))
27 #define AM_MSGENTERED (AM_MSGHEADER | ('e'<<8))
28 #define AM_MSGEXITED (AM_MSGHEADER | ('x'<<8))
31 void resinit_am_map (void);
33 // Called by main loop.
34 boolean
AM_Responder (event_t
* ev
);
36 // Called by main loop.
37 void AM_Ticker (void);
39 // Called by main loop,
40 // called instead of view drawer if automap active.
41 void AM_Drawer (void);
43 // Called to force the automap to quit
44 // if the level is completed while it is up.
50 //-----------------------------------------------------------------------------
53 // Revision 1.1 2000/02/29 18:21:05 stegerg
54 // Doom port based on ADoomPPC. Read README.AROS!
57 //-----------------------------------------------------------------------------