X-Git-Url: https://git.netwichtig.de/gitweb/?a=blobdiff_plain;ds=sidebyside;f=include%2Fcommands%2Fcmd_wallops.h;h=7c84a1434d08145a3c71f68f8c4c3c429a67fb1e;hb=9f13269062094853b023d09b4ac24d2cf08a0de2;hp=c637e6e980eb51c564a90d3ea9c259c60a144611;hpb=66098d307c036997e51eaea21724615e27fdc3e9;p=user%2Fhenk%2Fcode%2Finspircd.git diff --git a/include/commands/cmd_wallops.h b/include/commands/cmd_wallops.h index c637e6e98..7c84a1434 100644 --- a/include/commands/cmd_wallops.h +++ b/include/commands/cmd_wallops.h @@ -19,20 +19,16 @@ // include the common header files -#include -#include -#include -#include -#include -#include #include "users.h" #include "channels.h" +/** Handle /WALLOPS + */ class cmd_wallops : public command_t { public: cmd_wallops (InspIRCd* Instance) : command_t(Instance,"WALLOPS",'o',1) { syntax = ""; } - void Handle(const char** parameters, int pcnt, userrec *user); + CmdResult Handle(const char** parameters, int pcnt, userrec *user); }; #endif