DWC_LoadOwnPrivateDataAsync

C Specification


#include <dwc.h>

BOOL DWC_LoadOwnPrivateDataAsync( char* keys, void* param );

				

Description

This function loads its own data that was saved using the DWC_SavePrivateDataAsync function from the data storage server. The data for loading is specified in keys and must be a NULL-terminated character string.
keys is written using \\ as a delimiter, as in \\name\\stage. This allows multiple keys to be loaded at once, as in this example. Once data loading is complete, the load completion notification callback specified by DWC_SetStorageServerCallback is called.

When trying to load only non-existent keys or keys saved with the DWC_SavePublicDataAsync function, the callback argument success becomes FALSE. However, if only some of the specified keys fall into this category, they will not be included in the load data, and the success argument will be TRUE.

Arguments

keys Pointer to the key string for the data to be loaded.
param Callback parameter

Return Values

TRUE Starting load.
FALSE Cannot load because either the DS is offline or an error is being generated.

See Also

DWC_SavePublicDataAsync, DWC_SavePrivateDataAsync, DWC_LoadOwnPublicDataAsync, DWC_LoadOthersDataAsync, DWC_SetStorageServerCallback, DWCLoadFromServerCallback

Revision History

02/21/2006 Error corrections
01/18/2006 Initial version