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/clist_nicer | |
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/clist_nicer')
-rw-r--r-- | plugins/clist_nicer/skineditor/main.cpp | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/plugins/clist_nicer/skineditor/main.cpp b/plugins/clist_nicer/skineditor/main.cpp index a50ccd51ed..fc496c1cc9 100644 --- a/plugins/clist_nicer/skineditor/main.cpp +++ b/plugins/clist_nicer/skineditor/main.cpp @@ -61,6 +61,7 @@ PLUGININFOEX pluginInfo = { HINSTANCE g_hInst = 0;
PLUGINLINK *pluginLink;
struct MM_INTERFACE memoryManagerInterface;
+int hLangpack;
StatusItems_t *StatusItems;
ChangedSItems_t ChangedSItems = {0};
@@ -984,7 +985,8 @@ static int systemModulesLoaded(WPARAM wParam, LPARAM lParam) extern "C" int __declspec(dllexport) Load(PLUGINLINK * link)
{
pluginLink = link;
- return(LoadModule());
+ mir_getLP(&pluginInfo);
+ return(LoadModule());
}
static int ShutdownProc(WPARAM wParam, LPARAM lParam)
|