]> git.netwichtig.de Git - user/henk/code/inspircd.git/blobdiff - include/commands/cmd_gline.h
DO NOT USE THIS COMMIT - if you do, most of the modules wont work.
[user/henk/code/inspircd.git] / include / commands / cmd_gline.h
index 72693357663e2a62986b793cdabedada40e03773..b39a0515c500722c13a7a99b664609569689884c 100644 (file)
 #include "users.h"
 #include "channels.h"
 
+/** Handle /GLINE
+ */
 class cmd_gline : public command_t
 {
  public:
         cmd_gline (InspIRCd* Instance) : command_t(Instance,"GLINE",'o',1) { syntax = "<ident@host> [<duration> :<reason>]"; }
-        void Handle(const char** parameters, int pcnt, userrec *user);
+        CmdResult Handle(const char** parameters, int pcnt, userrec *user);
 };
 
 #endif