diff options
author | George Hazan <george.hazan@gmail.com> | 2012-11-25 21:12:45 +0000 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2012-11-25 21:12:45 +0000 |
commit | e89a8f4030443506d4f40d1a3bc6a8cec65531e7 (patch) | |
tree | c4883aaa7ad171ae556bceb47323310137efce38 /plugins/StatusPlugins/KeepStatus | |
parent | 3873ba081f6ef7c725170a469abdd975ab801e03 (diff) |
compilation fix
git-svn-id: http://svn.miranda-ng.org/main/trunk@2501 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/StatusPlugins/KeepStatus')
-rw-r--r-- | plugins/StatusPlugins/KeepStatus/main.cpp | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/plugins/StatusPlugins/KeepStatus/main.cpp b/plugins/StatusPlugins/KeepStatus/main.cpp index 8766d489b3..972b144d5f 100644 --- a/plugins/StatusPlugins/KeepStatus/main.cpp +++ b/plugins/StatusPlugins/KeepStatus/main.cpp @@ -30,9 +30,8 @@ HANDLE hCSModuleLoadedHook = NULL; HANDLE hConnectionEvent = NULL;
HANDLE hStopRecon = NULL, hEnableProto = NULL, hIsProtoEnabled = NULL, hAnnounceStat = NULL;
-
HINSTANCE hInst;
-
+CLIST_INTERFACE *pcli;
/////////////////////////////////////////////////////////////////////////////////////////
// dll entry point
@@ -79,8 +78,8 @@ INT_PTR AnnounceStatusChangeService(WPARAM wParam, LPARAM lParam); extern "C" int __declspec(dllexport) Load(void)
{
-
mir_getLP( &pluginInfoEx );
+ pcli = (CLIST_INTERFACE*)CallService( MS_CLIST_RETRIEVE_INTERFACE, 0, 0);
InitCommonStatus();
|