X-Git-Url: https://git.netwichtig.de/gitweb/?a=blobdiff_plain;f=src%2Fcmd_mode.cpp;h=e0d3b4242438314b07232ca14a6891f4cf33039c;hb=4cc6e5e14fdbde499481dbab5ab2ad1257b8af9c;hp=c1d128bf94e26834270cfbd02ce473cfd3f3c5c3;hpb=540f3bd9da75eea65e8ae5e5fd929ff522d95870;p=user%2Fhenk%2Fcode%2Finspircd.git diff --git a/src/cmd_mode.cpp b/src/cmd_mode.cpp index c1d128bf9..e0d3b4242 100644 --- a/src/cmd_mode.cpp +++ b/src/cmd_mode.cpp @@ -2,34 +2,28 @@ * | Inspire Internet Relay Chat Daemon | * +------------------------------------+ * - * InspIRCd is copyright (C) 2002-2006 ChatSpike-Dev. - * E-mail: - * - * + * InspIRCd: (C) 2002-2007 InspIRCd Development Team + * See: http://www.inspircd.org/wiki/index.php/Credits * - * Written by Craig Edwards, Craig McLure, and others. * This program is free but copyrighted software; see * the file COPYING for details. * * --------------------------------------------------- */ -#include "configreader.h" -#include "users.h" +#include "inspircd.h" #include "commands/cmd_mode.h" -extern "C" command_t* init_command(InspIRCd* Instance) +extern "C" DllExport Command* init_command(InspIRCd* Instance) { - return new cmd_mode(Instance); + return new CommandMode(Instance); } -void cmd_mode::Handle (const char** parameters, int pcnt, userrec *user) +/** Handle /MODE + */ +CmdResult CommandMode::Handle (const char** parameters, int pcnt, User *user) { - if (!user) - return; - ServerInstance->Modes->Process(parameters, pcnt, user, false); - - return; + return CMD_SUCCESS; }