]> git.netwichtig.de Git - user/henk/code/inspircd.git/blobdiff - include/commands/cmd_motd.h
DO NOT USE THIS COMMIT - if you do, most of the modules wont work.
[user/henk/code/inspircd.git] / include / commands / cmd_motd.h
index 310627ab121bdabd9c0d3f99d13cce5d94f0768a..2b625a241ff35e0324ba3634c32b0ae9e86ef0ec 100644 (file)
 #include "users.h"
 #include "channels.h"
 
+/** Handle /MOTD
+ */
 class cmd_motd : public command_t
 {
  public:
         cmd_motd (InspIRCd* Instance) : command_t(Instance,"MOTD",0,0) { syntax = "[<servername>]"; }
-        void Handle(const char** parameters, int pcnt, userrec *user);
+        CmdResult Handle(const char** parameters, int pcnt, userrec *user);
 };
 
 #endif