DWCSaveToServerCallback

C Specification

#include <dwc.h>

typedef void (*DWCSaveToServerCallback)( BOOL success,
                                         BOOL isPublic,
                                         void* param );

Description

This function is called when saving to the data storage server finishes.

This callback function can be set using DWC_SetStorageServerCallback.

Arguments

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.

Return Values

None.

See Also

DWC_SetStorageServerCallback, DWC_SavePublicDataAsync, DWC_SavePrivateDataAsync

Revision History

2005/12/16 Added a description of the callback select function.
2005/11/01 Initial version.