Important:
This is retired content. This content is outdated and is no longer being maintained. It is provided as a courtesy for individuals who are still using these technologies. This content may contain URLs that were valid when originally published, but now link to sites or pages that no longer exist.
A version of this page is also available for
4/8/2010

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
Windows Embedded CE Windows CE 1.0 and later
Windows Mobile Windows Mobile Version 5.0 and later

See Also