diff options
author | brain <brain@e03df62e-2008-0410-955e-edbf42e46eb7> | 2006-03-10 17:39:19 +0000 |
---|---|---|
committer | brain <brain@e03df62e-2008-0410-955e-edbf42e46eb7> | 2006-03-10 17:39:19 +0000 |
commit | 024048d646e5b98846e9967984ad452d2d6bf210 (patch) | |
tree | 2fbe3f4b4b8b0b6f7be827d4fa716320fa4bf754 /include/users.h | |
parent | 4c5acb6a26da3aa16123e848d22e96799e545d2c (diff) |
Moved more stuff into right places
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@3637 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'include/users.h')
-rw-r--r-- | include/users.h | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/include/users.h b/include/users.h index 7d0864ffa..b6ad57c64 100644 --- a/include/users.h +++ b/include/users.h @@ -364,9 +364,6 @@ class WhoWasGroup typedef std::deque<WhoWasGroup*> whowas_set; typedef std::map<irc::string,whowas_set*> whowas_users; -/** A lightweight userrec used by WHOWAS - */ - void AddOper(userrec* user); void DeleteOper(userrec* user); void kill_link(userrec *user,const char* r); @@ -377,6 +374,12 @@ void AddClient(int socket, int port, bool iscached, in_addr ip4); void FullConnectUser(userrec* user, CullList* Goners); userrec* ReHashNick(char* Old, char* New); void force_nickchange(userrec* user,const char* newnick); -void ReadClassesAndTypes(); + +/* Configuration callbacks */ +bool InitTypes(const char* tag); +bool InitClasses(const char* tag); +bool DoType(const char* tag, char** entries, void** values, int* types); +bool DoClass(const char* tag, char** entries, void** values, int* types); +bool DoneClassesAndTypes(const char* tag); #endif |