AppEasy Core SDK
1.5.0
Cross platform mobile and desktop app and game development SDK - The easy way to make apps
|
#include "IzPlatformOther.h"
#include "IzPlatformDisplay.h"
#include "CzApp.h"
#include "CzRender.h"
#include "CzModifier.h"
#include "CzProgram.h"
#include "CzUIBase.h"
#include "CzFile.h"
#include "CzTemplates.h"
#include "CzSettings.h"
#include "CzCam.h"
#include "CzMarket.h"
#include "CzHashes.h"
#include "CzMath.h"
Functions | |
int32 | CzApp_DeviceSuspend (void *caller, void *data) |
Device suspend collback. | |
int32 | CzApp_DeviceResume (void *caller, void *data) |
Device resume collback. | |
int32 | CzApp_DeviceVolumeUp (void *caller, void *data) |
Device volume up collback. | |
int32 | CzApp_DeviceVolumeDown (void *caller, void *data) |
Device volume up collback. | |
int32 | CzApp_DeviceNetworkOnline (void *caller, void *data) |
Device network online collback. | |
int32 | CzApp_DeviceNetworkOffline (void *caller, void *data) |
Device network offline collback. |
int32 CzApp_DeviceNetworkOffline | ( | void * | caller, |
void * | data | ||
) |
Device network offline collback.
This callback is called when the device loses network access
[in] | caller | If non-null, the caller. |
[in] | data | If non-null, the data. |
int32 CzApp_DeviceNetworkOnline | ( | void * | caller, |
void * | data | ||
) |
Device network online collback.
This callback is called when the device gains network access
[in] | caller | If non-null, the caller. |
[in] | data | If non-null, the data. |
int32 CzApp_DeviceResume | ( | void * | caller, |
void * | data | ||
) |
Device resume collback.
This callback is called when the app resumes.
[in] | caller | If non-null, the caller. |
[in] | data | If non-null, the data. |
int32 CzApp_DeviceSuspend | ( | void * | caller, |
void * | data | ||
) |
Device suspend collback.
This callback is called when the app is suspended, usually in response to the user taking a call or power saving pode kicks in.
[in] | caller | If non-null, the caller. |
[in] | data | If non-null, the data. |
int32 CzApp_DeviceVolumeDown | ( | void * | caller, |
void * | data | ||
) |
Device volume up collback.
This callback is called when the user changes the devices volume downwards.
[in] | caller | If non-null, the caller. |
[in] | data | If non-null, the data. |
int32 CzApp_DeviceVolumeUp | ( | void * | caller, |
void * | data | ||
) |
Device volume up collback.
This callback is called when the user changes the devices volume upwards.
[in] | caller | If non-null, the caller. |
[in] | data | If non-null, the data. |