Message Loop1 WIN32 메시지 루프에관한 설명이 잘 나와있다. http://www.winprog.org/tutorial/message_loop.html 사이트 이름은 theForger's Win32 API Programming Tutorial 잘나와있다. What is a Message Loopwhile(GetMessage(&Msg, NULL, 0, 0) > 0) { TranslateMessage(&Msg); DispatchMessage(&Msg); } The message loop calls GetMessage(), which looks in your message queue. If the message queue is empty your program basically stops and waits for one (it Blocks).When an event oc.. 2012. 10. 8. 이전 1 다음 반응형