summaryrefslogtreecommitdiff
path: root/plugins/BuddyExpectator
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/BuddyExpectator')
-rw-r--r--plugins/BuddyExpectator/BuddyExpectator.cpp7
-rw-r--r--plugins/BuddyExpectator/common.h1
2 files changed, 3 insertions, 5 deletions
diff --git a/plugins/BuddyExpectator/BuddyExpectator.cpp b/plugins/BuddyExpectator/BuddyExpectator.cpp
index d4620de3dc..3e7daed480 100644
--- a/plugins/BuddyExpectator/BuddyExpectator.cpp
+++ b/plugins/BuddyExpectator/BuddyExpectator.cpp
@@ -28,7 +28,6 @@
#include "options.h"
HINSTANCE hInst;
-PLUGINLINK *pluginLink;
int hLangpack;
DWORD timer_id = 0;
@@ -884,10 +883,10 @@ int onSystemOKToExit(WPARAM wParam,LPARAM lParam)
return 0;
}
-extern "C" int __declspec(dllexport) Load(PLUGINLINK *link)
+extern "C" int __declspec(dllexport) Load(void)
{
- pluginLink = link;
- mir_getLP(&pluginInfo);
+ mir_getLP(&pluginInfo);
+
setlocale(LC_ALL, "English"); // Set English locale
InitOptions();
diff --git a/plugins/BuddyExpectator/common.h b/plugins/BuddyExpectator/common.h
index 2794b9e91f..09bfd58011 100644
--- a/plugins/BuddyExpectator/common.h
+++ b/plugins/BuddyExpectator/common.h
@@ -57,7 +57,6 @@
#define MODULE_NAME "BuddyExpectator"
extern HINSTANCE hInst;
-extern PLUGINLINK *pluginLink;
void CALLBACK TimerProc(HWND, UINT, UINT_PTR, DWORD);
extern DWORD timer_id;