Show
Ignore:
Timestamp:
06/13/08 03:16:28 (7 months ago)
Author:
flynd
Message:

Added more general user group editing function to user manager so allow simpler group membership code in plugins.

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/licq/include/licq_icqd.h

    r6227 r6277  
    481481 
    482482  // Visible/Invisible/Ignore list functions 
     483  /** 
     484   * Set visible list status for a contact 
     485   * 
     486   * @param id User id 
     487   * @param ppid User protocol id 
     488   * @param visible True to add user to visible list or false to remove 
     489   */ 
     490  void ProtoSetInVisibleList(const char* id, unsigned long ppid, bool visible); 
     491 
     492  /** 
     493   * Set invisible list status for a contact 
     494   * 
     495   * @param id User id 
     496   * @param ppid User protocol id 
     497   * @param invisible True to add user to invisible list or false to remove 
     498   */ 
     499  void ProtoSetInInvisibleList(const char* id, unsigned long ppid, bool invisible); 
     500 
     501  /** 
     502   * Set invisible list status for a contact 
     503   * 
     504   * @param id User id 
     505   * @param ppid User protocol id 
     506   * @param ignore True to add user to ignore list or false to remove 
     507   */ 
     508  void ProtoSetInIgnoreList(const char* id, unsigned long ppid, bool ignore); 
     509 
    483510  void ProtoToggleInvisibleList(const char *_szId, unsigned long _nPPID); 
    484511  void ProtoToggleVisibleList(const char *_szId, unsigned long _nPPID);