]> icculus.org git repositories - taylor/freespace2.git/blob - include/missionpause.h
proper padding of PXO stats struct for FS2 demo
[taylor/freespace2.git] / include / missionpause.h
1 /*
2  * Copyright (C) Volition, Inc. 1999.  All rights reserved.
3  *
4  * All source code herein is the property of Volition, Inc. You may not sell 
5  * or otherwise commercially exploit the source or things you created based on
6  * the source.
7  */
8
9 /*
10  * $Logfile: /Freespace2/code/MissionUI/MissionPause.h $
11  * $Revision$
12  * $Date$
13  * $Author$
14  * 
15  *
16  * $Log$
17  * Revision 1.2  2002/06/09 04:41:13  relnev
18  * added copyright header
19  *
20  * Revision 1.1.1.1  2002/05/03 03:28:12  root
21  * Initial import.
22  *
23  * 
24  * 3     6/09/99 2:17p Dave
25  * Fixed up pleasewait bitmap rendering.
26  * 
27  *
28  * $NoKeywords: $
29  */
30
31 #ifndef _MISSION_PAUSE_HEADER_FILE
32 #define _MISSION_PAUSE_HEADER_FILE
33
34 #include "2d.h"
35
36 // ----------------------------------------------------------------------------------------------------------------
37 // PAUSE DEFINES/VARS
38 //
39
40 // pause bitmap display stuff
41 extern int Please_wait_coords[GR_NUM_RESOLUTIONS][4];
42
43
44 // ----------------------------------------------------------------------------------------------------------------
45 // PAUSE FUNCTIONS
46 //
47
48 // initialize the pause screen
49 void pause_init(int multi);
50
51 // pause do frame - will handle running multiplayer operations if necessary
52 void pause_do(int multi);
53
54 // close the pause screen
55 void pause_close(int multi);
56
57 // debug pause init
58 void pause_debug_init();
59
60 // debug pause do frame
61 void pause_debug_do();
62
63 // debug pause close
64 void pause_debug_close();
65
66 #endif
67