]> git.netwichtig.de Git - user/henk/code/inspircd.git/blobdiff - include/command_parse.h
Remove ZapThisDns
[user/henk/code/inspircd.git] / include / command_parse.h
index 44f5946bcd95e562ffc6bf49315edaeb8dd76b9c..800f2beeb9168b72d03220be8d500d44eb2a8115 100644 (file)
@@ -34,9 +34,10 @@ class CommandParser : public classbase
        command_table cmdlist;
 
        CommandParser();
-       bool CallHandler(const std::string &commandname,char **parameters, int pcnt, userrec *user);
+       bool CallHandler(const std::string &commandname,const char** parameters, int pcnt, userrec *user);
        bool IsValidCommand(const std::string &commandname, int pcnt, userrec * user);
-       int LoopCall(command_t *fn, char **parameters, int pcnt, userrec *u, int start, int end, int joins);
+       int LoopCall(userrec* user, command_t* CommandObj, const char** parameters, int pcnt, unsigned int splithere, unsigned int extra);
+       int LoopCall(userrec* user, command_t* CommandObj, const char** parameters, int pcnt, unsigned int splithere);
        void ProcessBuffer(std::string &buffer,userrec *user);
        bool RemoveCommands(const char* source);
        bool CreateCommand(command_t *f);