summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
author(no author) <(no author)@4f64403b-2f21-0410-a795-97e2b3489a10>2010-09-11 21:26:42 +0000
committer(no author) <(no author)@4f64403b-2f21-0410-a795-97e2b3489a10>2010-09-11 21:26:42 +0000
commit89c31c8a1ea2d6d0ab609e47768fc8ab5cff1f0d (patch)
treecea4793f2a0c0440a90a6f2eb5a9bc27aff23fd6
parent0b24c8d2f1cc07eedc2c1c5cd29f5b651ae8e58f (diff)
Removed unneeded event
git-svn-id: https://server.scottellis.com.au/svn/mim_plugs@534 4f64403b-2f21-0410-a795-97e2b3489a10
-rw-r--r--tipper/message_pump.cpp9
1 files changed, 2 insertions, 7 deletions
diff --git a/tipper/message_pump.cpp b/tipper/message_pump.cpp
index 0dfd14c..baed871 100644
--- a/tipper/message_pump.cpp
+++ b/tipper/message_pump.cpp
@@ -10,11 +10,8 @@ BOOL (WINAPI *MyAnimateWindow)(HWND hWnd,DWORD dwTime,DWORD dwFlags) = 0;
unsigned int message_pump_thread_id = 0;
-unsigned int CALLBACK MessagePumpThread(void *param) {
- if(param) SetEvent((HANDLE)param);
-
- CallService(MS_SYSTEM_THREAD_PUSH, 0, 0);
-
+unsigned int CALLBACK MessagePumpThread(void *param)
+{
HWND hwndTip = 0;
MSG hwndMsg = {0};
@@ -64,8 +61,6 @@ unsigned int CALLBACK MessagePumpThread(void *param) {
}
}
- CallService(MS_SYSTEM_THREAD_POP, 0, 0);
-
return 0;
}