]> git.netwichtig.de Git - user/henk/code/inspircd.git/blobdiff - include/commands/cmd_loadmodule.h
Properly name the windows service error constants and put proper descriptions in...
[user/henk/code/inspircd.git] / include / commands / cmd_loadmodule.h
index 9d5ad621bcc59e77923090368feadfd2fad6f02d..3f1d2309246b19475e6d132035730fe65726193c 100644 (file)
@@ -29,14 +29,14 @@ class CommandLoadmodule : public Command
  public:
        /** Constructor for loadmodule.
         */
-       CommandLoadmodule (InspIRCd* Instance) : Command(Instance,"LOADMODULE",'o',1) { syntax = "<modulename>"; }
+       CommandLoadmodule (InspIRCd* Instance) : Command(Instance,"LOADMODULE","o",1) { syntax = "<modulename>"; }
        /** 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 std::vector<std::string>& parameters, User *user);
 };
 
 #endif