comparison win/edge.cpp @ 2955:f99414164f5b

Win: Enable vsnprintf() usage with Visual C for extra safety.
author bsmith@81767d24-ef19-dc11-ae90-00e081727c95
date Fri, 06 Jan 2023 07:58:49 +0000
parents 2e804b4db81e
children 0058ab32e1bd
comparison
equal deleted inserted replaced
2954:40a5e6946e2b 2955:f99414164f5b
72 } 72 }
73 73
74 case WM_PAINT: 74 case WM_PAINT:
75 { 75 {
76 PAINTSTRUCT ps; 76 PAINTSTRUCT ps;
77 HDC hdc = BeginPaint(hWnd, &ps); 77 BeginPaint(hWnd, &ps);
78 EndPaint(hWnd, &ps); 78 EndPaint(hWnd, &ps);
79 return(0); 79 return(0);
80 } 80 }
81 81
82 case WM_CREATE: 82 case WM_CREATE: