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.

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.

Requirements

Runs on Versions Defined in Include Link to
Windows CE OS 1.0 and later Cesync.h    

Note   This API is part of the complete Windows CE OS package as provided by Microsoft. The functionality of a particular platform is determined by the original equipment manufacturer (OEM) and some devices may not support this API.

See Also

IReplStore::GetConflictInfo

 Last updated on Tuesday, July 13, 2004

© 1992-2000 Microsoft Corporation. All rights reserved.