diff options
Diffstat (limited to 'include')
-rw-r--r-- | include/channels.h | 4 | ||||
-rw-r--r-- | include/modules.h | 2 |
2 files changed, 4 insertions, 2 deletions
diff --git a/include/channels.h b/include/channels.h index 305ff9974..0e60e305f 100644 --- a/include/channels.h +++ b/include/channels.h @@ -436,8 +436,10 @@ class chanrec : public Extensible /** Spool the NAMES list for this channel to the given user * @param user The user to spool the NAMES list to + * @param ulist The user list to send, NULL to use the + * channel's default names list of everyone */ - void UserList(userrec *user); + void UserList(userrec *user, CUList* ulist = NULL); /** Get the number of invisible users on this channel * @return Number of invisible users diff --git a/include/modules.h b/include/modules.h index 51eb5a19b..78bb103fa 100644 --- a/include/modules.h +++ b/include/modules.h @@ -1338,7 +1338,7 @@ class Module : public Extensible * and if you do you must return 1. If you do not handle the names list, * return 0. */ - virtual int OnUserList(userrec* user, chanrec* Ptr); + virtual int OnUserList(userrec* user, chanrec* Ptr, CUList* &userlist); /** Called whenever a line of WHOIS output is sent to a user. * You may change the numeric and the text of the output by changing |