00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019 #ifndef INCL_EVENT_CONSTANTS
00020 #define INCL_EVENT_CONSTANTS
00021
00023
00024
00025
00026
00027
00028 #define SYNC_BEGIN 0x0001
00029 #define SYNC_END 0x0002
00030 #define SYNC_ERROR 0x0003
00031 #define SEND_INITIALIZATION 0x0004
00032 #define SEND_MODIFICATION 0x0005
00033 #define SEND_FINALIZATION 0x0006
00034
00035
00036 #define SEND_DATA_BEGIN 0x0011
00037 #define SEND_DATA_END 0x0012
00038 #define RECEIVE_DATA_BEGIN 0x0013
00039 #define DATA_RECEIVED 0x0014
00040 #define RECEIVE_DATA_END 0x0015
00041
00042
00043 #define SYNC_SOURCE_BEGIN 0x0021
00044 #define SYNC_SOURCE_END 0x0022
00045 #define SYNC_SOURCE_SYNCMODE_REQUESTED 0x0023
00046 #define SYNC_SOURCE_TOTAL_CLIENT_ITEMS 0x0024
00047 #define SYNC_SOURCE_TOTAL_SERVER_ITEMS 0x0025
00048
00049
00050 #define ITEM_ADDED_BY_SERVER 0x0031
00051 #define ITEM_DELETED_BY_SERVER 0x0032
00052 #define ITEM_UPDATED_BY_SERVER 0x0033
00053 #define ITEM_ADDED_BY_CLIENT 0x0034
00054 #define ITEM_DELETED_BY_CLIENT 0x0035
00055 #define ITEM_UPDATED_BY_CLIENT 0x0036
00056
00057
00058 #define CLIENT_STATUS 0x0041
00059 #define SERVER_STATUS 0x0042
00060
00061
00062 #define DIM_ERROR_MSG 1024
00063 #define DIM_COMMAND 128
00064
00065
00066 #define SYNC_LISTENER 0
00067 #define SYNC_SOURCE_LISTENER 1
00068 #define SYNC_STATUS_LISTENER 2
00069 #define SYNC_TRANSPORT_LISTENER 3
00070 #define SYNC_ITEM_LISTENER 4
00071
00072
00074 #endif