1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81
|
/*******************************************************************************
* shroudBNC - an object-oriented framework for IRC *
* Copyright (C) 2005-2014 Gunnar Beutner *
* *
* This program is free software; you can redistribute it and/or *
* modify it under the terms of the GNU General Public License *
* as published by the Free Software Foundation; either version 2 *
* of the License, or (at your option) any later version. *
* *
* This program is distributed in the hope that it will be useful, *
* but WITHOUT ANY WARRANTY; without even the implied warranty of *
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
* GNU General Public License for more details. *
* *
* You should have received a copy of the GNU General Public License *
* along with this program; if not, write to the Free Software *
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. *
*******************************************************************************/
#ifndef MODULE_H
#define MODULE_H
/**< used for getting the module's main object */
typedef CModuleFar *(* FNGETOBJECT)();
/**< used for getting the module's interface version */
typedef int (* FNGETINTERFACEVERSION)();
/**
* CModule
*
* A dynamically loaded shroudBNC module.
*/
class SBNCAPI CModule : public CModuleFar {
HMODULE m_Image; /**< the os-specific module handle */
char *m_File; /**< the filename of the module */
CModuleFar *m_Far; /**< the module's implementation of the CModuleFar class */
char *m_Error; /**< the last error */
bool InternalLoad(const char *Path);
public:
#ifndef SWIG
CModule(const char *Filename);
virtual ~CModule(void);
#endif /* SWIG */
CModuleFar *GetModule(void);
const char *GetFilename(void);
HMODULE GetHandle(void);
RESULT<bool> GetError(void);
// proxy implementation of CModuleFar
void Destroy(void);
void Init(CCore *Root);
bool InterceptIRCMessage(CIRCConnection *Connection, int ArgC, const char **ArgV);
bool InterceptClientMessage(CClientConnection *Connection, int ArgC, const char **ArgV);
bool InterceptClientCommand(CClientConnection *Connection, const char *Subcommand, int ArgC, const char **ArgV, bool NoticeUser);
void AttachClient(CClientConnection *Client);
void DetachClient(CClientConnection *Client) ;
void ServerDisconnect(const char *Client);
void ServerConnect(const char *Client);
void ServerLogon(const char *Client);
void UserLoad(const char *User);
void UserCreate(const char *User);
void UserDelete(const char *User);
void SingleModeChange(CIRCConnection *IRC, const char *Channel, const char *Source, bool Flip, char Mode, const char *Parameter);
const char *Command(const char *Cmd, const char *Parameters);
void TagModified(const char *Tag, const char *Value);
void UserTagModified(const char *Tag, const char *Value);
bool MainLoop(void);
};
#endif /* MODULE_H */
|