1 /* +------------------------------------+
2 * | Inspire Internet Relay Chat Daemon |
3 * +------------------------------------+
5 * InspIRCd: (C) 2002-2007 InspIRCd Development Team
6 * See: http://www.inspircd.org/wiki/index.php/Credits
8 * This program is free but copyrighted software; see
9 * the file COPYING for details.
11 * ---------------------------------------------------
14 #ifndef __CMD_RELOADMODULE_H__
15 #define __CMD_RELOADMODULE_H__
17 // include the common header files
22 /** Handle /RELOADMODULE. These command handlers can be reloaded by the core,
23 * and handle basic RFC1459 commands. Commands within modules work
24 * the same way, however, they can be fully unloaded, where these
27 class cmd_reloadmodule : public Command
30 /** Constructor for reloadmodule.
32 cmd_reloadmodule (InspIRCd* Instance) : Command(Instance,"RELOADMODULE",'o',1) { syntax = "<modulename>"; }
34 * @param parameters The parameters to the comamnd
35 * @param pcnt The number of parameters passed to teh command
36 * @param user The user issuing the command
37 * @return A value from CmdResult to indicate command success or failure.
39 CmdResult Handle(const char** parameters, int pcnt, User *user);