diff options
Diffstat (limited to 'plugins/Folders/folders.cpp')
-rw-r--r-- | plugins/Folders/folders.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/plugins/Folders/folders.cpp b/plugins/Folders/folders.cpp index 88fe12cf77..419e5f8a10 100644 --- a/plugins/Folders/folders.cpp +++ b/plugins/Folders/folders.cpp @@ -33,7 +33,7 @@ int hLangpack; CFoldersList &lstRegisteredFolders = CFoldersList(10); //the list
-PLUGINLINK *pluginLink;
+
PLUGININFOEX pluginInfo = {
sizeof(PLUGININFOEX),
@@ -170,12 +170,12 @@ extern "C" __declspec(dllexport) const MUUID *MirandaPluginInterfaces() return interfaces;
}
-extern "C" int __declspec(dllexport) Load(PLUGINLINK *link)
+extern "C" int __declspec(dllexport) Load(void)
{
#if _MSC_VER >= 1300
Log("%s", "Entering function " __FUNCTION__);
#endif
- pluginLink = link;
+
mir_getLP(&pluginInfo);
Log("%s", "Creating service functions ...");
|