diff options
Diffstat (limited to 'include/command_parse.h')
-rw-r--r-- | include/command_parse.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/include/command_parse.h b/include/command_parse.h index 15e0f1446..800f2beeb 100644 --- a/include/command_parse.h +++ b/include/command_parse.h @@ -36,7 +36,8 @@ class CommandParser : public classbase CommandParser(); 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, const 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); |