Windows message and Message Queue

Source: Internet
Author: User
In Windows, each thread corresponds to a message queue, which is automatically created by the system. Therefore, if you want Program To respond to the mouse and keyboard operation, you need to obtain the message from the message queue and then make the corresponding response function based on the message. The general practice is to write a message loop, which constantly extracts and processes messages from the message queue until the program exits. The example provided by msdn is as follows:

While (Bret = getmessage (& MSG, null, 0, 0 ))! = 0)
{
If (Bret =-1)
{
// Handle the error and possibly exit
}
Else
{
If (hwnddlgmodeless = (hwnd) null |
! Isdialogmessage (hwnddlgmodeless, & MSG )&&
! Translateaccelerator (hwndmain, haccel,
& MSG ))
{
Translatemessage (& MSG );
Dispatchmessage (& MSG );
}
}
}

getmessage is used to obtain a message from the message queue. Its prototype is as follows
getmessage (lpmsg lpmsg , hwnd hwnd , uint wmsgfiltermin , uint wmsgfiltermax)

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.