FS2_Open
Open source remastering of the Freespace 2 engine
missionload.h
Go to the documentation of this file.
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 the
6  * source.
7  *
8 */
9 
10 
11 
12 #ifndef _MISSIONLOAD_H
13 #define _MISSIONLOAD_H
14 
15 #include "globalincs/pstypes.h"
16 
17 // -----------------------------------------------
18 // For recording most recent missions played
19 // -----------------------------------------------
20 #define MAX_RECENT_MISSIONS 10
22 extern int Num_recent_missions;
23 
24 // Mission_load takes no parameters.
25 // It sets the following global variables:
26 // Game_current_mission_filename
27 
28 int mission_load(char *filename_ext);
29 
30 // Functions for mission load menu
34 
35 #endif
#define MAX_FILENAME_LEN
Definition: pstypes.h:324
int Num_recent_missions
Definition: missionload.cpp:35
void mission_load_menu_init()
char Recent_missions[MAX_RECENT_MISSIONS][MAX_FILENAME_LEN]
Definition: missionload.cpp:34
void mission_load_menu_do()
void mission_load_menu_close()
int mission_load(char *filename_ext)
Definition: missionload.cpp:83
#define MAX_RECENT_MISSIONS
Definition: missionload.h:20