diff options
author | Kirill Volinsky <mataes2007@gmail.com> | 2012-05-18 21:25:08 +0000 |
---|---|---|
committer | Kirill Volinsky <mataes2007@gmail.com> | 2012-05-18 21:25:08 +0000 |
commit | 5e4ecb158a9835d79536326835287d49f22d65f1 (patch) | |
tree | f2ebb66a27170f790fbd7893d81b07f7fb0ea723 /plugins/ProfileManager | |
parent | 6dfdccb3decd016ced438309d326547e5244604e (diff) |
compilation fixes
git-svn-id: http://svn.miranda-ng.org/main/trunk@56 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/ProfileManager')
-rw-r--r-- | plugins/ProfileManager/pmanagerEx.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/plugins/ProfileManager/pmanagerEx.c b/plugins/ProfileManager/pmanagerEx.c index 4de242d464..f564d00849 100644 --- a/plugins/ProfileManager/pmanagerEx.c +++ b/plugins/ProfileManager/pmanagerEx.c @@ -6,6 +6,8 @@ This file is placed in the public domain. Anybody is free to use or modify it as they wish with no restriction.
There is no warranty.
*/
+#define MIRANDA_VER 0x0A00
+
#include <windows.h>
#include <newpluginapi.h>
#include <m_clist.h>
@@ -79,7 +81,7 @@ int __declspec(dllexport) Load(PLUGINLINK *link) {
CLISTMENUITEM mi;
pluginLink=link;
- mir_getLP(&pluginInfoEx);
+ mir_getLP(&pluginInfo);
CreateServiceFunction("Database/LoadPM",LoadPM);
ZeroMemory(&mi,sizeof(mi));
|