About 369,000 results
Open links in new tab
  1. Window Messages (Get Started with Win32 and C++)

    Apr 27, 2021 · Posting a message means the message goes on the message queue, and is dispatched through the message loop (GetMessage and DispatchMessage). Sending a …

  2. Message loop in Microsoft Windows - Wikipedia

    A programmer makes the process do that by writing a loop that calls GetMessage (which blocks for a message and retrieves it), and then calls DispatchMessage (which dispatches the …

  3. Tutorial: Understanding the Message Loop - Winprog

    Understanding the message loop and entire message sending structure of windows programs is essential in order to write anything but the most trivial programs.

  4. Windows Programming/Message Loop Architecture - Wikibooks

    Nov 5, 2018 · Register the window classes to be used by the program; Create any Windows used by the program; Run the message loop; We will explain each of those tasks in more detail.

  5. Some messages bypass the message queue and are sent to WndProc immediately for processing. If you are using a library in your program code, it might create a new separate …

  6. Does a win32 application have one message loop? Or is it one message

    Usually you only set up a single message loop per message queue. Dialogs use nested message loops, that are for the most part invisible to clients; nothing you should worry about for the …

  7. Message Loops - K-State CIS 400 Textbook

    Oct 8, 2023 · At the heart of every Windows program (and most operating systems), is an infinitely repeating loop we call the message loop and a data structure we call a message queue (some …

  8. Understanding the Message Loop - Modula-2

    Understanding the message loop and entire message sending structure of windows programs is essential in order to write anything but the most trivial programs.

  9. Using Messages and Message Queues - Win32 apps

    Feb 5, 2023 · You create a message loop by using the GetMessage and DispatchMessage functions. If your application must obtain character input from the user, include the …

  10. A Primer on Windows Hooks and Message Loops • 0x52657A5A

    Dec 1, 2022 · We’ll have a message loop that runs permanently until no more messages are found. After that, it runs the FreeLibrary() and UnhookWindowsHook() functions, in order to …

  11. Some results have been removed
Refresh