Hi guys,
I need to send a message (WM_APP message) to my thread and return immediatly, I tried to do it using PostMessage (a no-blocking function) with hWnd param = Null (it posts the message to the thread message queue).
I tried to get the message from the queue using PeekMessage (another functio...