[swift] cleanup functions

This commit is contained in:
Mathew Sutcliffe
2014-06-22 01:56:11 +01:00
parent 20efe9a5f5
commit cdef678e61
2 changed files with 28 additions and 0 deletions

View File

@@ -272,6 +272,22 @@ const char * XPMPMultiplayerInit(
*/
const char * XPMPMultiplayerEnable(void);
/*
* XPMPMultiplayerDisable
*
* Disable drawing of multiplayer planes. Call this from XPluginDisable to release multiplayer.
* Reverses the actions on XPMPMultiplayerEnable.
*/
void XPMPMultiplayerDisable(void);
/*
* XPMPMultiplayerCleanup
*
* Clean up the multiplayer library. Call this from XPluginStop to reverse the actions of
* XPMPMultiplayerInit as much as possible.
*/
void XPMPMultiplayerCleanup(void);
/*
* XPMPLoadPlanesIfNecessary
*