diff options
Diffstat (limited to 'include')
-rw-r--r-- | include/inspircd.h | 3 | ||||
-rw-r--r-- | include/modules.h | 4 |
2 files changed, 7 insertions, 0 deletions
diff --git a/include/inspircd.h b/include/inspircd.h index e41482341..2f1b8bc1a 100644 --- a/include/inspircd.h +++ b/include/inspircd.h @@ -104,6 +104,7 @@ class InspIRCd void erase_factory(int j); void erase_module(int j); void BuildISupport(); + void MoveTo(std::string modulename,int slot); public: time_t startup_time; @@ -118,6 +119,8 @@ class InspIRCd char* ModuleError(); bool LoadModule(const char* filename); bool UnloadModule(const char* filename); + void MoveToLast(std::string modulename); + void MoveToFirst(std::string modulename); InspIRCd(int argc, char** argv); int Run(); diff --git a/include/modules.h b/include/modules.h index 1530592d3..5f9dfa29a 100644 --- a/include/modules.h +++ b/include/modules.h @@ -274,6 +274,8 @@ class ExtMode : public classbase }; +enum Priority { PRIORITY_FIRST, PRIORITY_DONTCARE, PRIORITY_LAST }; + enum Implementation { I_OnUserConnect, I_OnUserQuit, I_OnUserDisconnect, I_OnUserJoin, I_OnUserPart, I_OnRehash, I_OnServerRaw, I_OnExtendedMode, I_OnUserPreJoin, I_OnUserPreKick, I_OnUserKick, I_OnOper, I_OnInfo, I_OnWhois, I_OnUserPreInvite, I_OnUserInvite, I_OnUserPreMessage, I_OnUserPreNotice, I_OnUserPreNick, I_OnUserMessage, I_OnUserNotice, I_OnMode, @@ -315,6 +317,8 @@ class Module : public classbase virtual void Implements(char* Implements); + virtual Priority Prioritize(); + /** Called when a user connects. * The details of the connecting user are available to you in the parameter userrec *user * @param user The user who is connecting |