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