1 2 #ifndef CLIMM_IM_ICQ8 3 #define CLIMM_IM_ICQ8 4 5 UBYTE IMRoster (Server *serv, int mode); 6 UBYTE IMDeleteID (Server *serv, int tag, int id, const char *name); 7 8 #define IMROSTER_EXPORT 1 /* export local to sbl */ 9 #define IMROSTER_UPLOAD 2 /* add local to sbl */ 10 #define IMROSTER_DOWNLOAD 3 /* add sbl to local */ 11 #define IMROSTER_IMPORT 4 /* import sbl as local */ 12 #define IMROSTER_SYNC 5 /* import sbl as local if appropriate */ 13 #define IMROSTER_SHOW 6 /* show sbl */ 14 #define IMROSTER_DIFF 7 /* show sbl vs local diff */ 15 16 #define IMROSTER_ISDOWN(m) ((m) == IMROSTER_DOWNLOAD || (m) == IMROSTER_IMPORT || (m) == IMROSTER_SYNC) 17 18 #endif 19