]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - include/commands/cmd_whois.h
OOPS! We try again, since I'm smoking craq. LF is 0x0a NOT CR.
[user/henk/code/inspircd.git] / include / commands / cmd_whois.h
1 /*       +------------------------------------+
2  *       | Inspire Internet Relay Chat Daemon |
3  *       +------------------------------------+
4  *
5  *  InspIRCd is copyright (C) 2002-2007 ChatSpike-Dev.
6  *                     E-mail:
7  *              <brain@chatspike.net>
8  *              <Craig@chatspike.net>
9  *
10  * Written by Craig Edwards, Craig McLure, and others.
11  * This program is free but copyrighted software; see
12  *          the file COPYING for details.
13  *
14  * ---------------------------------------------------
15  */
16
17 #ifndef __CMD_WHOIS_H__
18 #define __CMD_WHOIS_H__
19
20 // include the common header files
21
22 #include "users.h"
23 #include "channels.h"
24
25 const char* Spacify(char* n);
26 DllExport void do_whois(InspIRCd* Instance, userrec* user, userrec* dest,unsigned long signon, unsigned long idle, const char* nick);
27
28 /** Handle /WHOIS. These command handlers can be reloaded by the core,
29  * and handle basic RFC1459 commands. Commands within modules work
30  * the same way, however, they can be fully unloaded, where these
31  * may not.
32  */
33 class cmd_whois : public command_t
34 {
35  public:
36         /** Constructor for whois.
37          */
38         cmd_whois (InspIRCd* Instance) : command_t(Instance,"WHOIS",0,1) { syntax = "<nick>{,<nick>}"; }
39         /** Handle command.
40          * @param parameters The parameters to the comamnd
41          * @param pcnt The number of parameters passed to teh command
42          * @param user The user issuing the command
43          * @return A value from CmdResult to indicate command success or failure.
44          */
45         CmdResult Handle(const char** parameters, int pcnt, userrec *user);
46 };
47
48 #endif