일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | ||||||
2 | 3 | 4 | 5 | 6 | 7 | 8 |
9 | 10 | 11 | 12 | 13 | 14 | 15 |
16 | 17 | 18 | 19 | 20 | 21 | 22 |
23 | 24 | 25 | 26 | 27 | 28 |
- python __init__
- text2img
- tensorflow update
- 영어
- #실생활 영어
- keras
- convexhull
- TensorFlow
- #opencv
- c언어
- #Android
- findContours
- 영어명언
- tokenizing
- #영어
- Convolution Neural Network
- #English
- 완전탐색
- word embedding
- #프로젝트
- #실생활영어
- 딥러닝
- object detection
- #1일1영어
- python list
- python 알고리즘
- #일상영어
- #영어 명언
- opencv SURF
- 이미지 생성
- Today
- Total
목록#api (2)
When will you grow up?
GetMessage() PeekMessage()BOOL GetMessage( BOOL PeekMessage(LPMSG lpMsg, LPMSG lpMsg, HWND hWnd,HWND hWnd, UINT wMsgFilterMin,UINT wMsgFilterMin, UINT wMsgFilterMax,UINT wMsgFilterMax); UINT wRemoveMsg); 메시지 루프에서 메시지를 가져오는 -> GetMessage()함수이다.스레드 메시지 큐에서 메시지를 가져올때, 메시지가 없으면 새로운 메시지가 전달될 때까지, 메시지를 리턴시키지 않는다. 이 시점에 다른 프로세스가 CPU를 쓸 수 있도록 양보한다. GetMessage는 메시지를 받기 전에 절대로 리턴을 않하므로, 데드 타임을 활용 X 메시지 큐에..
화면 위에처럼 이런식으로 나오네요^~^아래는 소스코드 // //////////////////////////////////////////////////////////////////////////////// #pragma warning( disable : 4996) #include #include #include #include char m_sCls[128] ; HINSTANCE m_hInst = NULL; HWND m_hWnd = NULL; DWORD m_dWinStyle = WS_OVERLAPPEDWINDOW| WS_VISIBLE; DWORD m_dScnX = 800; // Screen Width DWORD m_dScnY = 600; // Screen Height BOOL m_bShowCusor= TRU..