X-Git-Url: https://git.netwichtig.de/gitweb/?a=blobdiff_plain;f=src%2Fcmd_mode.cpp;h=e5240b00d47be2cd148c2d28aa6e4d1e70a566ff;hb=4487dde76ffbdb21e7dc319b3b87d09c3cf60d8c;hp=545a14f8d8eeb29f0a7afc21b943b98004c961a9;hpb=4cf0ae1308fe98757de42ffbe391e61844ac9e0a;p=user%2Fhenk%2Fcode%2Finspircd.git diff --git a/src/cmd_mode.cpp b/src/cmd_mode.cpp index 545a14f8d..e5240b00d 100644 --- a/src/cmd_mode.cpp +++ b/src/cmd_mode.cpp @@ -2,28 +2,26 @@ * | 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); } -CmdResult cmd_mode::Handle (const char** parameters, int pcnt, userrec *user) +/** Handle /MODE + */ +CmdResult cmd_mode::Handle (const char** parameters, int pcnt, User *user) { ServerInstance->Modes->Process(parameters, pcnt, user, false); return CMD_SUCCESS;