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