]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - src/cmd_loadmodule.cpp
Windows support. Tested and working to compile on freebsd and linux. Next step is...
[user/henk/code/inspircd.git] / src / cmd_loadmodule.cpp
1 /*       +------------------------------------+
2  *       | Inspire Internet Relay Chat Daemon |
3  *       +------------------------------------+
4  *
5  *  InspIRCd: (C) 2002-2007 InspIRCd Development Team
6  * See: http://www.inspircd.org/wiki/index.php/Credits
7  *
8  * This program is free but copyrighted software; see
9  *            the file COPYING for details.
10  *
11  * ---------------------------------------------------
12  */
13
14 #include "inspircd.h"
15 #include "users.h"
16 #include "commands/cmd_loadmodule.h"
17
18 extern "C" DllExport command_t* init_command(InspIRCd* Instance)
19 {
20         return new cmd_loadmodule(Instance);
21 }
22
23 /** Handle /LOADMODULE
24  */
25 CmdResult cmd_loadmodule::Handle (const char** parameters, int pcnt, userrec *user)
26 {
27         if (ServerInstance->LoadModule(parameters[0]))
28         {
29                 ServerInstance->WriteOpers("*** NEW MODULE: %s loaded %s",user->nick, parameters[0]);
30                 user->WriteServ("975 %s %s :Module successfully loaded.",user->nick, parameters[0]);
31                 return CMD_SUCCESS;
32         }
33         else
34         {
35                 user->WriteServ("974 %s %s :Failed to load module: %s",user->nick, parameters[0],ServerInstance->ModuleError());
36                 return CMD_FAILURE;
37         }
38 }
39