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:
thunder2 2015-06-15 15:15:18 +00:00
parent 6a778ab904
commit 9947a21c73
2 changed files with 17 additions and 0 deletions

View file

@ -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 ;