mirror of
https://github.com/inspircd/inspircd.git
synced 2025-03-10 02:59:01 -04:00
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@1466 e03df62e-2008-0410-955e-edbf42e46eb7
90 lines
1.5 KiB
C++
90 lines
1.5 KiB
C++
/* +------------------------------------+
|
|
* | Inspire Internet Relay Chat Daemon |
|
|
* +------------------------------------+
|
|
*
|
|
* Inspire is copyright (C) 2002-2004 ChatSpike-Dev.
|
|
* E-mail:
|
|
* <brain@chatspike.net>
|
|
* <Craig@chatspike.net>
|
|
*
|
|
* Written by Craig Edwards, Craig McLure, and others.
|
|
* This program is free but copyrighted software; see
|
|
* the file COPYING for details.
|
|
*
|
|
* ---------------------------------------------------
|
|
*/
|
|
|
|
|
|
#ifndef __DLL_H
|
|
#define __DLL_H
|
|
|
|
typedef void * (initfunc) (void);
|
|
|
|
#include "inspircd_config.h"
|
|
|
|
class DLLManager
|
|
{
|
|
public:
|
|
DLLManager( const char *fname );
|
|
virtual ~DLLManager();
|
|
|
|
|
|
#ifdef STATIC_LINK
|
|
bool GetSymbol( initfunc* &v, const char *sym_name );
|
|
#else
|
|
bool GetSymbol( void **, const char *sym_name );
|
|
#endif
|
|
|
|
const char *LastError()
|
|
{
|
|
return err;
|
|
}
|
|
|
|
protected:
|
|
void *h;
|
|
char *err;
|
|
#ifdef STATIC_LINK
|
|
char staticname[1024];
|
|
#endif
|
|
};
|
|
|
|
|
|
class DLLFactoryBase : public DLLManager
|
|
{
|
|
public:
|
|
DLLFactoryBase(const char *fname, const char *func_name = 0);
|
|
virtual ~DLLFactoryBase();
|
|
#ifdef STATIC_LINK
|
|
initfunc *factory_func;
|
|
#else
|
|
void * (*factory_func)(void);
|
|
#endif
|
|
};
|
|
|
|
|
|
template <class T> class DLLFactory : public DLLFactoryBase
|
|
{
|
|
public:
|
|
DLLFactory(const char *fname, const char *func_name=0) : DLLFactoryBase(fname,func_name)
|
|
{
|
|
if (factory_func)
|
|
factory = (T*)factory_func();
|
|
else
|
|
factory = 0;
|
|
}
|
|
|
|
~DLLFactory()
|
|
{
|
|
delete factory;
|
|
}
|
|
|
|
T *factory;
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#endif
|