DWC_LoginToStorageServerAsync

C Specification

#include <dwc.h>

BOOL DWC_LoginToStorageServerAsync(
                       DWCStorageLoginCallback callback,
                       void* param );

Description

Login to the data storage server. Login using this function before calling any of the following storage server access functions: DWC_LoadOthersDataAsync, DWC_LoadOwnDataAsync, DWC_SavePublicDataAsync, and DWC_SavePrivateDataAsync.

If the DWC_ProcessFriendsMatch function is called continuously after this function is called, the login process proceeds, and once the login process is complete, an completion callback is called.

After data access finishes, logout using the DWC_LogoutFromStorageServer function. Logout performs automatically if the DWC_ShutdownFriendsMatch function is called.

Arguments

callback Pointer to the login completion notification callback function.
param Callback parameter

Return Values

TRUE Starting the login process succeeded.
FALSE Starting the login process failed. Note that no callback is called.

See Also

DWC_LoadOthersDataAsync, DWC_LoadOwnDataAsync, DWC_SavePublicDataAsync, DWC_SavePrivateDataAsync, DWC_LogoutFromStorageServer, DWC_ShutdownFriendsMatch, DWCStorageLoginCallback

Revision History

12/16/2005 Revisions.
11/04/2005 Initial version.