You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
40 lines
906 B
40 lines
906 B
// ui_cflct.h
|
|
//
|
|
// definitions for WAB synchronization conflict resolution dialog
|
|
//
|
|
#include "imnxport.h"
|
|
#include "imnact.h"
|
|
|
|
#ifndef __UI_CFLCT_H__
|
|
#define __UI_CFLCT_H__
|
|
|
|
#ifdef __cplusplus
|
|
extern "C"{
|
|
#endif
|
|
|
|
typedef enum {
|
|
CONFLICT_IGNORE = 0,
|
|
CONFLICT_SERVER,
|
|
CONFLICT_CLIENT
|
|
}CONFLICT_DECISION;
|
|
|
|
#define CONFLICT_DECISION_COUNT 28
|
|
|
|
typedef struct HTTPCONFLICTINFO
|
|
{
|
|
BOOL fContainsSkip;
|
|
LPHTTPCONTACTINFO pciServer;
|
|
LPHTTPCONTACTINFO pciClient;
|
|
CONFLICT_DECISION rgcd[CONFLICT_DECISION_COUNT];
|
|
}HTTPCONFLICTINFO, *LPHTTPCONFLICTINFO;
|
|
|
|
|
|
BOOL ResolveConflicts(HWND hwnd, LPHTTPCONFLICTINFO prgConflicts, DWORD cConflicts);
|
|
BOOL ChooseHotmailServer(HWND hwnd, IImnEnumAccounts *pEnumAccts, LPSTR pszAccountName, DWORD cchAccountName);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
|
|
#endif //__UI_CFLCT_H__
|