bool bar::update()

{

    MSG msg;


    if(!GetMessage(&msg, NULL, NULL, NULL)) {

        TranslateMessage(&msg);

        DispatchMessage(&msg);

    }

else return 0;


return 1;

    

}

GetMessage가 리턴을 안해주므ㅠㅠ 원래 안해주는걸까요ㅠㅠ

으앙 ㅠㅠㅠㅠ

이거 멀티스레드로 돌려도 되나 ㅠㅠ