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