disable the unrecognized nls flag
[AROS-Contrib.git] / Games / Doom / am_map.h
blob3dc0fd3a62944faebdda6a8a31e2784ce0519c8e
1 // Emacs style mode select -*- C++ -*-
2 //-----------------------------------------------------------------------------
3 //
4 // $Id$
5 //
6 // Copyright (C) 1993-1996 by id Software, Inc.
7 //
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
15 // for more details.
17 // DESCRIPTION:
18 // AutoMap module.
20 //-----------------------------------------------------------------------------
22 #ifndef __AMMAP_H__
23 #define __AMMAP_H__
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.
45 void AM_Stop (void);
49 #endif
50 //-----------------------------------------------------------------------------
52 // $Log$
53 // Revision 1.1 2000/02/29 18:21:05 stegerg
54 // Doom port based on ADoomPPC. Read README.AROS!
57 //-----------------------------------------------------------------------------