diff options
author | brain <brain@e03df62e-2008-0410-955e-edbf42e46eb7> | 2006-01-25 16:31:05 +0000 |
---|---|---|
committer | brain <brain@e03df62e-2008-0410-955e-edbf42e46eb7> | 2006-01-25 16:31:05 +0000 |
commit | cdaf7ac3781a0ea1bfbfac85c4a428ddea7725f9 (patch) | |
tree | 84758aa082957cf9c19fa59df9b55d06e33fb9dd /include/inspircd.h | |
parent | 51fff2f99dc4692cfbb14eda789d615280d79365 (diff) |
Added PRIORITY_BEFORE and PRIORITY_AFTER (see src/modules/m_hostchange.cpp for how it works, function Prioritize())
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@2889 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'include/inspircd.h')
-rw-r--r-- | include/inspircd.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/include/inspircd.h b/include/inspircd.h index fd2255046..68289d5ee 100644 --- a/include/inspircd.h +++ b/include/inspircd.h @@ -121,6 +121,8 @@ class InspIRCd bool UnloadModule(const char* filename); void MoveToLast(std::string modulename); void MoveToFirst(std::string modulename); + void MoveAfter(std::string modulename, std::string after); + void MoveBefore(std::string modulename, std::string before); InspIRCd(int argc, char** argv); int Run(); |