]> icculus.org git repositories - taylor/freespace2.git/blob - include/missionload.h
proper padding of PXO stats struct for FS2 demo
[taylor/freespace2.git] / include / missionload.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/Mission/MissionLoad.h $
11  * $Revision$
12  * $Date$
13  * $Author$
14  *
15  * Mission load header file
16  *
17  * $Log$
18  * Revision 1.2  2002/06/09 04:41:13  relnev
19  * added copyright header
20  *
21  * Revision 1.1.1.1  2002/05/03 03:28:12  root
22  * Initial import.
23  *
24  * 
25  * 2     10/07/98 10:53a Dave
26  * Initial checkin.
27  * 
28  * 1     10/07/98 10:49a Dave
29  * 
30  * 20    2/23/98 6:55p Lawrance
31  * Rip out obsolete code.
32  * 
33  * 19    6/26/97 5:53p Lawrance
34  * save recently played missions, allow player to choose from list
35  * 
36  * 18    4/25/97 11:31a Allender
37  * Campaign state now saved in campaign save file in player directory.
38  * Made some global variables follow naming convention.  Solidified
39  * continuing campaigns based on new structure
40  *
41  * $NoKeywords: $
42  */
43
44 #ifndef _MISSIONLOAD_H
45 #define _MISSIONLOAD_H
46
47 #include "pstypes.h"
48
49 // -----------------------------------------------
50 // For recording most recent missions played
51 // -----------------------------------------------
52 #define                 MAX_RECENT_MISSIONS     10
53 extern  char    Recent_missions[MAX_RECENT_MISSIONS][MAX_FILENAME_LEN];
54 extern  int     Num_recent_missions;
55
56 // Mission_load takes no parameters.
57 // It expects the following variables to be set correctly:
58 // Game_current_mission_filename
59
60 int mission_load();
61 void mission_init();
62
63 #endif
64