CONFINFO (Compact 7)

3/12/2014

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.

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[MAX_OBJTYPE_NAME]
    Null-terminated string that contains the name of the local object client would like to show to the user.
  • szLocalDesc[512]
    Null-terminated string that contains the description of the local object client would like to show to the user.
  • szRemoteName[MAX_OBJTYPE_NAME]
    Null-terminated string that contains the name of the remote object client would like to show to the user.
  • szRemoteDesc[512]
    Null-terminated string that contains the description of the remote object client would like to show to the user.

Requirements

Header

cesync.h

See Also

Reference

ActiveSync Structures
IReplStore::GetConflictInfo