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