[Solved] Why doesn’t my Windows API callback function run? [closed]

The documentation for SendMessageCallback tells you, why your callback will not ever be called: If the target window belongs to a different thread from the caller, then the callback function is called only when the thread that called SendMessageCallback also calls GetMessage, PeekMessage, or WaitMessage. The target window obviously belongs to a different thread, because … Read more