Untitled

mail@pastecode.io avatar
unknown
plain_text
a year ago
365 B
1
Indexable
Never
LRESULT CALLBACK WndProc(HWND hwnd, UINT Message, WPARAM wParam, LPARAM lParam) {
switch(Message) {
case WM_PAINT: {
PAINTSTRUCT ps;
HDC hdc=BeginPaint(hwnd,&ps);
. . . // рисуем что-то
EndPaint(hwnd,&ps);
} break;
case WM_DESTROY: {
PostQuitMessage(0);
break;
}
default:
return DefWindowProc(hwnd, Message, wParam, lParam);
}
return 0;
}