Загрузка данных
void SnowWoman (HDC hdc, int x, int y) { Ellipse(hdc, 20 x, y, 40 x 20 + y); Ellipse(hdc, 10x, 20 y, 50 x, 60 + y); 11 case WM_PAINT: { PAINTSTRUCT ps; HDC hdc BeginPaint(hWnd, &ps); SnowWoman (hdc, 0, 0); } EndPaint(hWnd, &ps); break;