]> icculus.org git repositories - taylor/freespace2.git/blob - include/multi_pinfo.h
Initial revision
[taylor/freespace2.git] / include / multi_pinfo.h
1 /*
2  * $Logfile: /Freespace2/code/Network/multi_pinfo.h $
3  * $Revision$
4  * $Date$
5  * $Author$
6  *
7  * $Log$
8  * Revision 1.1  2002/05/03 03:28:12  root
9  * Initial revision
10  *  
11  * 
12  * 3     1/30/99 1:29a Dave
13  * Fixed nebula thumbnail problem. Full support for 1024x768 choose pilot
14  * screen.  Fixed beam weapon death messages.
15  * 
16  * 2     10/07/98 10:53a Dave
17  * Initial checkin.
18  * 
19  * 1     10/07/98 10:50a Dave
20  * 
21  * 2     4/20/98 6:04p Dave
22  * Implement multidata cache flushing and xferring mission files to
23  * multidata. Make sure observers can't change hud config. Fix pilot image
24  * viewing in popup. Put in game status field. Tweaked multi options. 
25  * 
26  * 1     3/05/98 8:20p Dave
27  * 
28  * $NoKeywords: $
29  */
30
31 #ifndef _MULTI_PLAYER_INFO_HEADER_FILE
32 #define _MULTI_PLAYER_INFO_HEADER_FILE
33
34 // ---------------------------------------------------------------------------------------
35 // MULTI PLAYER INFO DEFINES/VARS
36 //
37
38 // prototypes
39 struct net_player;
40
41
42 // ---------------------------------------------------------------------------------------
43 // MULTI PLAYER INFO FUNCTIONS
44 //
45
46 // fire up the player info popup
47 void multi_pinfo_popup(net_player *np);
48
49 // is the pilot info popup currently active?
50 int multi_pinfo_popup_active();
51
52 // kill the currently active popup (if any)
53 void multi_pinfo_popup_kill();
54
55 // notify the popup that a player has left
56 void multi_pinfo_notify_drop(net_player *np);
57
58 #endif
59