mirror of
https://github.com/RetroShare/RetroShare.git
synced 2025-06-21 04:44:25 -04:00
Added missing dlcolse to RsPluginManager::loadPlugin.
Added proper handling of the handle of the loaded plugin. git-svn-id: http://svn.code.sf.net/p/retroshare/code/trunk@8465 b45a01b8-16f6-495d-af2f-9b41ad6348cc
This commit is contained in:
parent
6a778ab904
commit
9947a21c73
2 changed files with 17 additions and 0 deletions
|
@ -12,7 +12,14 @@ class p3LinkMgr ;
|
|||
|
||||
class PluginInfo
|
||||
{
|
||||
public:
|
||||
PluginInfo() : handle(NULL), plugin(NULL), API_version(0), svn_revision(0), status(0) {}
|
||||
|
||||
public:
|
||||
// Handle of the loaded plugin.
|
||||
//
|
||||
void *handle;
|
||||
|
||||
// Main object provided by the plugin. NULL is the plugin could not be loaded.
|
||||
//
|
||||
RsPlugin *plugin ;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue