Changeset 6199 for trunk/licq/include/licq_events.h
- Timestamp:
- 05/25/08 06:24:29 (8 months ago)
- Files:
-
- 1 modified
-
trunk/licq/include/licq_events.h (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/licq/include/licq_events.h
r6181 r6199 308 308 309 309 /* 310 * SIGNAL_UPDATExLIST -311 * Indicates that the user list has changed in some way. The sub-type312 * will be one of the following. In all cases the argument is 0.313 * LIST_ADD - A user was added to the list. The UIN will be that of314 * the new user.315 * LIST_REMOVE - A user was removed from the list. The UIN will be316 * that of the removed user.317 * LIST_ALL - The entire list has been changed. The UIN will be 0.318 *319 310 * SIGNAL_UPDATExUSER - The user has been modified in some way. The UIN 320 311 * is that of the relevant user, and the sub-type indicates what type of … … 339 330 * SIGNAL_ONEVENT - FIXME: MISSING DESCRIPTION 340 331 *-------------------------------------------------------------------------*/ 332 /** Indicates that the user list has changed in some way */ 341 333 const unsigned long SIGNAL_UPDATExLIST = 0x00000001; 342 334 const unsigned long SIGNAL_UPDATExUSER = 0x00000002; … … 412 404 const unsigned long USER_PLUGIN_STATUS = 15; // Which Plugin? 413 405 414 const unsigned long LIST_ADD = 1; 415 const unsigned long LIST_REMOVE = 2; 416 const unsigned long LIST_ALL = 3; 406 /** 407 * Sub signals for SIGNAL_UPDATExLIST 408 * 409 * For contact updates, ppid and id are valid. For group updates, argument 410 * holds the group id. 411 */ 412 enum SubSignals_UPDATExLIST 413 { 414 LIST_CONTACT_ADDED = 1, /**< A contact was added to the list */ 415 LIST_CONTACT_REMOVED = 2, /**< A contact was removed from the list */ 416 LIST_INVALIDATE = 3, /**< List must be reloaded */ 417 LIST_GROUP_ADDED = 4, /**< A group was added to the list */ 418 LIST_GROUP_REMOVED = 5, /**< A group was removed from the list */ 419 LIST_GROUP_CHANGED = 6 /**< Data for a group has changed */ 420 }; 421 422 // Deprecated SIGNAL_UPDATExLIST sub signal names, do not use 423 const unsigned long LIST_ADD = LIST_CONTACT_ADDED; 424 const unsigned long LIST_REMOVE = LIST_CONTACT_REMOVED; 425 const unsigned long LIST_ALL = LIST_INVALIDATE; 426 417 427 418 428 /*! \brief Plugin notification messages
