ich hab das mal mit der MadCodeHook-Lib getestet. Es schien auch erst ganz gut zu funktionieren. nur gibt es das problem dass manchmal programmfehler auftreten, die daher kommen dass windows irgendwie die nachricht falsch überbringt...
im manual steht dazu
"
CAUTION: When using the default parameters each
IPC message is handled by a seperate thread, as a result your handler will be called in the context of a different thread each time. This is has some advantages and some disadvantages. One problem is that when using multiple threads Windows' time scheduler will do whatever it likes. This may result in that the order of the incoming messages is slightly different to how they were sent. If that is a problem for you, please use "CreateIpcQueueEx" and specifiy a maximum thread count of "1". This will make sure that the order of the messages stays the same.
"
wenn ich allerdings den Thread Count auf 1 setze, habe ich wieder das problem was ich vorher mit postmessage hatte nämlich dass der zu lange braucht bis die nachricht ankommt womit ich mich im kreis drehe
außerdem kann man nur 1 oder unendlich als thread count verwenden