#include <dwc.h>
BOOL DWC_LoginToStorageServerAsync(
DWCStorageLoginCallback callback,
void* param );
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.
callback |
Pointer to the login completion notification callback function. |
param |
Callback parameter |
TRUE |
Starting the login process succeeded. |
FALSE |
Starting the login process failed. Note that no callback is called. |
DWC_LoadOthersDataAsync, DWC_LoadOwnDataAsync, DWC_SavePublicDataAsync, DWC_SavePrivateDataAsync, DWC_LogoutFromStorageServer, DWC_ShutdownFriendsMatch, DWCStorageLoginCallback
12/16/2005 Revisions.
11/04/2005 Initial version.