summaryrefslogtreecommitdiff
path: root/plugins/Clist_modern
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/Clist_modern')
-rw-r--r--plugins/Clist_modern/hdr/modern_commonprototypes.h3
-rw-r--r--plugins/Clist_modern/init.cpp11
2 files changed, 2 insertions, 12 deletions
diff --git a/plugins/Clist_modern/hdr/modern_commonprototypes.h b/plugins/Clist_modern/hdr/modern_commonprototypes.h
index ad79a497ed..d1209100e0 100644
--- a/plugins/Clist_modern/hdr/modern_commonprototypes.h
+++ b/plugins/Clist_modern/hdr/modern_commonprototypes.h
@@ -20,9 +20,6 @@
extern PLUGININFOEX pluginInfo;
extern CLIST_INTERFACE * pcli;
extern CLIST_INTERFACE corecli;
-extern struct UTF8_INTERFACE utfi;
-extern struct LIST_INTERFACE li;
-extern struct MM_INTERFACE mmi;
//Global variables
extern int ON_SETALLEXTRAICON_CYCLE;
diff --git a/plugins/Clist_modern/init.cpp b/plugins/Clist_modern/init.cpp
index 1587656eb8..92d0d1dcfd 100644
--- a/plugins/Clist_modern/init.cpp
+++ b/plugins/Clist_modern/init.cpp
@@ -40,10 +40,7 @@ CLIST_INTERFACE corecli={0};
CLUIDATA g_CluiData={0};
int hLangpack;
-MM_INTERFACE mmi;
-LIST_INTERFACE li;
-UTF8_INTERFACE utfi;
-TIME_API tmi;
+TIME_API tmi;
pfnTryEnterCriticalSection fnTryEnterCriticalSection;
@@ -113,10 +110,6 @@ PLUGININTERFACE int CListInitialise(PLUGINLINK * link)
g_dwMainThreadID = GetCurrentThreadId();
DuplicateHandle(GetCurrentProcess(),GetCurrentThread(),GetCurrentProcess(),&g_hMainThread,0,FALSE,DUPLICATE_SAME_ACCESS);
-
- mir_getMMI(&mmi);
- mir_getUTFI(&utfi);
- mir_getLI(&li);
mir_getTMI(&tmi);
mir_getLP( &pluginInfo );
@@ -132,7 +125,7 @@ PLUGININTERFACE int CListInitialise(PLUGINLINK * link)
CHECKRES ( ToolbarLoadModule() );
TRACE( "CListInitialise Modern Contact List ... Done\r\n" );
-
+
return S_OK;
}