Explorar el Código

changed sendmessage to postmessage

git-svn-id: svn://svn.code.sf.net/p/ditto-cp/code/trunk@220 595ec19a-5cb4-439b-94a8-42fb3063c22c
sabrogden hace 20 años
padre
commit
94b15ead92
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1 1
      focusdll/focusdll.cpp

+ 1 - 1
focusdll/focusdll.cpp

@@ -37,7 +37,7 @@ static LRESULT WINAPI HookProc(int code, WPARAM wParam, LPARAM lParam)
         
         //And if notification requested, send a windows message.
         if(hNotifyWnd)
-			SendMessage(hNotifyWnd, uMessage, wParam, lParam);
+			PostMessage(hNotifyWnd, uMessage, wParam, lParam);
     }
  
     return CallNextHookEx(hHook,code,wParam,lParam);