Some potential academic sources to draw from:
In this feature, we will explore the basics of creating a first Windows program using C++ and the Windows API. first windows program
PAINTSTRUCT ps; HDC hdc = BeginPaint(hwnd, &ps); // paint code here FillRect(hdc, &ps.rcPaint, (HBRUSH)(COLOR_WINDOW + 1)); EndPaint(hwnd, &ps); Some potential academic sources to draw from: In
return msg.wParam;