]> icculus.org git repositories - taylor/freespace2.git/blob - include/multi_pinfo.h
fix issue with looping audio streams
[taylor/freespace2.git] / include / multi_pinfo.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_pinfo.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  * 3     1/30/99 1:29a Dave
24  * Fixed nebula thumbnail problem. Full support for 1024x768 choose pilot
25  * screen.  Fixed beam weapon death messages.
26  * 
27  * 2     10/07/98 10:53a Dave
28  * Initial checkin.
29  * 
30  * 1     10/07/98 10:50a Dave
31  * 
32  * 2     4/20/98 6:04p Dave
33  * Implement multidata cache flushing and xferring mission files to
34  * multidata. Make sure observers can't change hud config. Fix pilot image
35  * viewing in popup. Put in game status field. Tweaked multi options. 
36  * 
37  * 1     3/05/98 8:20p Dave
38  * 
39  * $NoKeywords: $
40  */
41
42 #ifndef _MULTI_PLAYER_INFO_HEADER_FILE
43 #define _MULTI_PLAYER_INFO_HEADER_FILE
44
45 // ---------------------------------------------------------------------------------------
46 // MULTI PLAYER INFO DEFINES/VARS
47 //
48
49 // prototypes
50 struct net_player;
51
52
53 // ---------------------------------------------------------------------------------------
54 // MULTI PLAYER INFO FUNCTIONS
55 //
56
57 // fire up the player info popup
58 void multi_pinfo_popup(net_player *np);
59
60 // is the pilot info popup currently active?
61 int multi_pinfo_popup_active();
62
63 // kill the currently active popup (if any)
64 void multi_pinfo_popup_kill();
65
66 // notify the popup that a player has left
67 void multi_pinfo_notify_drop(net_player *np);
68
69 #endif
70