diff options
author | Kirill Volinsky <mataes2007@gmail.com> | 2012-05-18 20:12:25 +0000 |
---|---|---|
committer | Kirill Volinsky <mataes2007@gmail.com> | 2012-05-18 20:12:25 +0000 |
commit | 9ed5a0436109770d38318ae9a3c117f46aeefa5e (patch) | |
tree | 6ee76bb67f44a29a127733cd0a528c4392040ce0 /plugins/ContactsPlus | |
parent | 4b0b9dbaf8b0fea12620fd84b8f71c99e3fc9b3f (diff) |
added new langpavk support
git-svn-id: http://svn.miranda-ng.org/main/trunk@54 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/ContactsPlus')
-rw-r--r-- | plugins/ContactsPlus/main.cpp | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/plugins/ContactsPlus/main.cpp b/plugins/ContactsPlus/main.cpp index 7f167c84d0..c609129108 100644 --- a/plugins/ContactsPlus/main.cpp +++ b/plugins/ContactsPlus/main.cpp @@ -27,6 +27,7 @@ HINSTANCE hInst;
PLUGINLINK *pluginLink;
+int hLangpack;
int g_NewProtoAPI = FALSE;
@@ -322,7 +323,8 @@ extern "C" __declspec(dllexport) const MUUID* MirandaPluginInterfaces(void) extern "C" __declspec(dllexport) int Load(PLUGINLINK *link)
{
- pluginLink = link;
+ pluginLink = link;
+ mir_getLP(&pluginInfoEx);
InitCommonControls();
InitI18N();
|