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 * ---------------------------------------------------
15 #include "configreader.h"
17 #include "commands/cmd_wallops.h"
21 extern "C" DllExport command_t* init_command(InspIRCd* Instance)
23 return new cmd_wallops(Instance);
26 CmdResult cmd_wallops::Handle (const char** parameters, int pcnt, userrec *user)
28 user->WriteWallOps(std::string(parameters[0]));
29 FOREACH_MOD(I_OnWallops,OnWallops(user,parameters[0]));