Is there such a API function for thread?
C / C++ / MFC
1
Posts
1
Posters
0
Views
1
Watching
-
It is well-known that the
PostThreadMessage
function ,only for thread,places (posts) a message in the message queue of the specified thread and then returns without waiting for the thread to process the message. Q: Whether there is a function which ,similar toSendMessage
in function,but for thread not window,sends the specified message to a thread and does not return until the thread has processed the message. Rap off for you,for me,for our human.