#include <dwc.h>
typedef void (*DWCSaveToServerCallback)( BOOL success,
BOOL isPublic,
void* param );
This function is called when saving to the data storage server finishes.
This callback function can be set using DWC_SetStorageServerCallback
.
success |
TRUE: Save succeeded. FALSE: Save failed. |
isPublic |
TRUE: Saved data is public data. FALSE: Private data. Note that a valid value is stored here even if success = FALSE. |
param |
Parameter for the callback specified by DWC_SavePublicDataAsync or DWC_SavePrivateDataAsync . |
None.
DWC_SetStorageServerCallback, DWC_SavePublicDataAsync, DWC_SavePrivateDataAsync
2005/12/16 Added a description of the callback select function.
2005/11/01 Initial version.