]> icculus.org git repositories - taylor/freespace2.git/blob - include/multi_update.h
embed standalone web in executable
[taylor/freespace2.git] / include / multi_update.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/Network/multi_update.h $
11  * $Revision$
12  * $Date$
13  * $Author$
14  *
15  * $Log$
16  * Revision 1.2  2002/06/09 04:41:14  relnev
17  * added copyright header
18  *
19  * Revision 1.1.1.1  2002/05/03 03:28:12  root
20  * Initial import.
21  * 
22  * 
23  * 2     10/07/98 10:53a Dave
24  * Initial checkin.
25  * 
26  * 1     10/07/98 10:50a Dave
27  * 
28  * 2     7/09/98 4:51p Dave
29  * First revision of PXO autoupdate check system.
30  * 
31  * 1     7/09/98 2:09p Dave
32  * 
33  *
34  * $NoKeywords: $
35  */
36
37 #ifndef _FREESPACE_AUTOUPDATE_THINGIE_HEADER_FILE
38 #define _FREESPACE_AUTOUPDATE_THINGIE_HEADER_FILE
39
40 // -------------------------------------------------------------------------------------------------------------------
41 // MULTI UPDATE DEFINES/VARS
42 //
43
44 // operation return codes
45 #define MULTI_UPDATE_CONTINUE                                                   0                               // continue to next screen
46 #define MULTI_UPDATE_SHUTTING_DOWN                                      1                               // freespace is exiting to the launcher
47 #define MULTI_UPDATE_MAIN_MENU                                          2                               // caller should move back to the main menu
48
49
50 // -------------------------------------------------------------------------------------------------------------------
51 // MULTI UPDATE FUNCTIONS
52 //
53
54 // check to see if the version of FS on this machine is not recent. run in a popup
55 // if the versions don't check out, bail to the launcher
56 // see MULTI_UPDATE_* return codes, above
57 int multi_update_gobaby();
58
59
60 #endif
61