]> git.netwichtig.de Git - user/henk/code/inspircd.git/blobdiff - include/commands/cmd_kill.h
Make all our modules use the new stuff rather than the send_ events
[user/henk/code/inspircd.git] / include / commands / cmd_kill.h
index 29c93d0bfef8e37929130e226d40d2505c87f634..7d5b24fb004644d757fb604773057157d5639ced 100644 (file)
@@ -29,14 +29,14 @@ class CommandKill : public Command
  public:
        /** Constructor for kill.
         */
-       CommandKill (InspIRCd* Instance) : Command(Instance,"KILL",'o',2,false,0) { syntax = "<nickname> <reason>"; }
+       CommandKill (InspIRCd* Instance) : Command(Instance,"KILL","o",2,false,0) { syntax = "<nickname> <reason>"; }
        /** Handle command.
         * @param parameters The parameters to the comamnd
         * @param pcnt The number of parameters passed to teh command
         * @param user The user issuing the command
         * @return A value from CmdResult to indicate command success or failure.
         */
-       CmdResult Handle(const char** parameters, int pcnt, User *user);
+       CmdResult Handle(const char* const* parameters, int pcnt, User *user);
 };
 
 #endif