|
From: <ar...@us...> - 2003-01-13 04:49:18
|
Update of /cvsroot/decaldev/source/Inject
In directory sc8-pr-cvs1:/tmp/cvs-serv19827/Inject
Modified Files:
Inject.cpp
Log Message:
Cyncia_L - Fix for Inject.dll not closing with decal.
Index: Inject.cpp
===================================================================
RCS file: /cvsroot/decaldev/source/Inject/Inject.cpp,v
retrieving revision 1.15
retrieving revision 1.16
diff -C2 -d -r1.15 -r1.16
*** Inject.cpp 1 Aug 2002 00:52:24 -0000 1.15
--- Inject.cpp 13 Jan 2003 04:49:15 -0000 1.16
***************
*** 183,186 ****
--- 183,188 ----
::UnhookWindowsHookEx( g_hHook );
g_hHook = NULL;
+ // Send a broadcast message, this forces the hook to trigger, and thus unload
+ SendMessage(HWND_BROADCAST,WM_NULL,0,0);
}
|