DWCUpdateServersCallback

C Specification

#include <dwc.h>

typedef void (*DWCUpdateServersCallback)(
                                         DWCError error,
                                         BOOL  isChanged,
                                         void* param );

Description

This function is called when synchronous processing of the friend roster has completed after DWC_UpdateServersAsync has been called.

Please see DWC_UpdateServersAsync for details regarding synchronous processing of the friend roster.

This callback function can be set using DWC_UpdateServersAsync.

Arguments

error DWC error type. For details, see DWC_GetLastErrorEx.
isChanged TRUE: The friend roster was rewritten during synchronous processing of the friend roster.
FALSE: The friend roster was not rewritten.
param Parameter for the callback specified by DWC_UpdateServersAsync.

Return Values

None.

See Also

DWC_UpdateServersAsync, DWC_GetLastErrorEx

Revision History

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