void AppExit();

 

The AppExit() function is called whenever your application terminates, either by the user pressing the home button, or by some other interruption, such as an incoming phone call. A DragonFireSDK program must have one function named AppExit(). Additionally, DragonFireSDK programs must have an AppMain() function and an OnTimer() event.

 

Availability

 

Required function starting with DragonFireSDK 1.1.

 

Example

 

Description: This program will set up a proper DragonFireSDK environment.

 

#include "DragonFireSDK.h"

 

void AppMain()

{

 

}

 

void AppExit()

{

 

}

 

void OnTimer()

{

 

}