What is the difference between GetMessage and PeekMessage ?
Answers were Sorted based on User's Feedback
Answer / girish tryambake
The major difference between the two is that GetMessage()
doesn't return until it finds a message to retrieve from the
Application Queue, this allows us to free up precious CPU
usage for other programs to use. PeekMessage() returns
immediately weather there are any messages or not, this
allows us to utilize the time between messages, for example
to render a 3D scene.
| Is This Answer Correct ? | 29 Yes | 4 No |
Answer / sandeep
GetMessage essentially waits for any message to be placed in
the queue
before it returns. On other hadn, PeekMessage function does
not wait.
That means GetMessage can block until the message appears in
the queue.
| Is This Answer Correct ? | 21 Yes | 1 No |
Answer / amol lande
GetMessage:
a. It retrieves the message from the calling thread's message queue.
b. It blocks until it gets a message or an error occurs.
c. It can filter message as per specified filter.
PeekMessage:
a. It checks for the message in the calling thread's message queue and it retrieves the message if any present.
b. As specified in the argument, it may or may not removes the message from message queue.
c. It returns immediately if there is no message found in the message queue.
| Is This Answer Correct ? | 2 Yes | 0 No |
How to convert a CString variable to char* or LPTSTR?
Explain Doc/View architecture
Hi can anyone explain about the synchronization objects types and where we are using in the code.
I have 2 threads. One thread prints odd numbers and the second thread prints even numbers. Now, I have to execute the threads alternatively so that i can output 1,2,3,4,5,6,..... write code for this?
How many types of dialog box are their
How to create a Modeless Dialog?
What is the difference between regular dlls and extended dlls?
What is Thread ?(VC++)What is the difference between Cmutex and Csemaphone?
1)does Frame Thickness in MFC?
How we can findout Memoryleaks, In what way it can be avoided
What is subclassing?
visual Pogramming c++ coding for create a paint application.. (Please someone help me)