X-Git-Url: https://git.netwichtig.de/gitweb/?a=blobdiff_plain;f=include%2Fcommands%2Fcmd_commands.h;h=6c73f9a51712e84f2a10bee989d80b71bb63b4f6;hb=9f13269062094853b023d09b4ac24d2cf08a0de2;hp=2f9c5f4cb2fa2d14a7cfceb13155d09e761aab2b;hpb=5b8d2c4cabec5e6bb7aaf359e6cf6af9635c8dab;p=user%2Fhenk%2Fcode%2Finspircd.git diff --git a/include/commands/cmd_commands.h b/include/commands/cmd_commands.h index 2f9c5f4cb..6c73f9a51 100644 --- a/include/commands/cmd_commands.h +++ b/include/commands/cmd_commands.h @@ -22,11 +22,13 @@ #include "users.h" #include "channels.h" +/** Handle /COMMANDS + */ class cmd_commands : public command_t { public: cmd_commands (InspIRCd* Instance) : command_t(Instance,"COMMANDS",0,0) { } - void Handle(const char** parameters, int pcnt, userrec *user); + CmdResult Handle(const char** parameters, int pcnt, userrec *user); }; #endif