]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - src/cmd_wallops.cpp
In the grand tradition of huge fucking commits:
[user/henk/code/inspircd.git] / src / cmd_wallops.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 "commands/cmd_wallops.h"
16
17
18
19 extern "C" DllExport Command* init_command(InspIRCd* Instance)
20 {
21         return new cmd_wallops(Instance);
22 }
23
24 CmdResult cmd_wallops::Handle (const char** parameters, int pcnt, User *user)
25 {
26         user->WriteWallOps(std::string(parameters[0]));
27         FOREACH_MOD(I_OnWallops,OnWallops(user,parameters[0]));
28         return CMD_SUCCESS;
29 }