CONFINFO

This structure is used to retrieve information about two conflicting items. The server uses a dialog box to present this information to the user, who can then choose an option for resolving the conflict.

At a Glance

Header file: Cesync.h
Windows CE versions: 2.0 and later

Syntax

typedef struct tagConfInfo{
UINT cbStruct;
HREPLFLD hFolder;
HREPLITEM hLocalItem;
HREPLITEM hRemoteItem;
char szLocalName[ MAX_OBJTYPE_NAME ];
char szLocalDesc[ 512 ];
char szRemoteName[ MAX_OBJTYPE_NAME ];
char szRemoteDesc[ 512 ];
} CONFINFO, *PCONFINFO;

Members

cbStruct

Size of this structure.

hFolder

Handle to the folder where the objects are stored.

hLocalItem

Handle to the local object.

hRemoteItem

Handle to the remote object.

szLocalName

Null-terminated string that contains the name of the local object client would like to show to the user.

szLocalDesc

Null-terminated string that contains the description of the local object client would like to show to the user.

szRemoteName

Null-terminated string that contains the name of the remote object client would like to show to the user.

szRemoteDesc

Null-terminated string that contains the description of the remote object client would like to show to the user.

See Also

IReplStore::GetConflictInfo