]> icculus.org git repositories - taylor/freespace2.git/blob - include/wing.h
fix issue with looping audio streams
[taylor/freespace2.git] / include / wing.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/FRED2/wing.h $
11  * $Revision$
12  * $Date$
13  * $Author$
14  *
15  * Wing management functions for dealing with wing related operations
16  *
17  * $Log$
18  * Revision 1.2  2002/06/09 04:41:15  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 6:28p Dave
26  * Initial checkin. Renamed all relevant stuff to be Fred2 instead of
27  * Fred. Globalized mission and campaign file extensions. Removed Silent
28  * Threat specific code.
29  * 
30  * 1     10/07/98 3:02p Dave
31  * 
32  * 1     10/07/98 3:00p Dave
33  * 
34  * 7     8/16/97 4:51p Hoffoss
35  * Fixed bugs with wing deletion and removing ships from a wing.
36  * 
37  * 6     8/12/97 1:55a Hoffoss
38  * Made extensive changes to object reference checking and handling for
39  * object deletion call.
40  * 
41  * 5     6/18/97 2:36p Hoffoss
42  * Wing ship numbering starts at 1 instead of 0, and changed form wing to
43  * allow reforming a wing.
44  * 
45  * 4     2/17/97 5:28p Hoffoss
46  * Checked RCS headers, added them were missing, changing description to
47  * something better, etc where needed.
48  * 
49  * 3     1/24/97 4:14p Hoffoss
50  * Added error checking to Fred.
51  * 
52  * 2     11/26/96 2:40p Hoffoss
53  * Wing toolbar buttons supported.
54  * 
55  * 1     11/05/96 9:14a Hoffoss
56  * 
57  * $NoKeywords: $
58  */
59
60 #include "management.h"
61
62 int     create_wing();
63 void    remove_wing(int wing_num);
64 void    remove_ship_from_wing(int ship, int min = 1);
65 void    mark_wing(int wing);
66 int     delete_wing(int wing = cur_wing, int bypass = 0);
67