From 81e8caf42867b65677efe2bffaa52ecff7303c3a Mon Sep 17 00:00:00 2001 From: George Hazan Date: Wed, 27 Jun 2012 13:58:25 +0000 Subject: no more pluginLink in load() git-svn-id: http://svn.miranda-ng.org/main/trunk@652 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c --- plugins/TabSRMM/src/srmm.cpp | 10 +++++----- plugins/TabSRMM/src/themes.cpp | 2 +- 2 files changed, 6 insertions(+), 6 deletions(-) (limited to 'plugins/TabSRMM/src') diff --git a/plugins/TabSRMM/src/srmm.cpp b/plugins/TabSRMM/src/srmm.cpp index 6aefbcf8bc..0b72e80ccf 100644 --- a/plugins/TabSRMM/src/srmm.cpp +++ b/plugins/TabSRMM/src/srmm.cpp @@ -37,10 +37,10 @@ extern int LoadSendRecvMessageModule(void); extern int SplitmsgShutdown(void); extern void LogErrorMessage(HWND hwndDlg, struct TWindowData *dat, int i, TCHAR *szMsg); -extern int Chat_Load(PLUGINLINK *link), Chat_Unload(); +extern int Chat_Load(), Chat_Unload(); extern void FreeLogFonts(); -PLUGINLINK *pluginLink; + HINSTANCE g_hInst; LOGFONT lfDefault = {0}; @@ -87,14 +87,14 @@ extern "C" __declspec(dllexport) const MUUID* MirandaPluginInterfaces(void) return interfaces; } -extern "C" int __declspec(dllexport) Load(PLUGINLINK * link) +extern "C" int __declspec(dllexport) Load(void) { if (WinVerMajor() < 5) { MessageBox(0, _T("This version of tabSRMM requires Windows 2000 or later."), _T("tabSRMM"), MB_OK | MB_ICONERROR); return 1; } - pluginLink = link; + mir_getTMI(&tmi); mir_getLP(&pluginInfo); @@ -102,7 +102,7 @@ extern "C" int __declspec(dllexport) Load(PLUGINLINK * link) SystemParametersInfo(SPI_GETICONTITLELOGFONT, sizeof(lfDefault), &lfDefault, FALSE); - Chat_Load(pluginLink); + Chat_Load(); return LoadSendRecvMessageModule(); } diff --git a/plugins/TabSRMM/src/themes.cpp b/plugins/TabSRMM/src/themes.cpp index dd475d1a19..6ad5700dd0 100644 --- a/plugins/TabSRMM/src/themes.cpp +++ b/plugins/TabSRMM/src/themes.cpp @@ -1632,7 +1632,7 @@ create_it: * it calls ReadItems() to read additional skin information like image items, * buttons and icons. */ -void CSkin::Load() +void CSkin::Load(void) { if(warnToClose() == false) return; -- cgit v1.2.3