From f38b143a40d74e512515d5992a4e8d26ffb43140 Mon Sep 17 00:00:00 2001 From: Vadim Lopatin Date: Thu, 3 Dec 2015 17:27:37 +0300 Subject: [PATCH] fix win32 --- 3rdparty/win32/winuser.d | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/3rdparty/win32/winuser.d b/3rdparty/win32/winuser.d index 824c2ca4..0cc7e602 100644 --- a/3rdparty/win32/winuser.d +++ b/3rdparty/win32/winuser.d @@ -4399,9 +4399,9 @@ static if (_WIN32_WINNT >= 0x403) { static if (_WIN32_WINNT >= 0x410) { BOOL EnumDisplayMonitors(HDC, LPCRECT, MONITORENUMPROC, LPARAM); BOOL GetMonitorInfoA(HMONITOR, LPMONITORINFO); - BOOL GetMonitorInfoA(HMONITOR, LPMONITORINFOEXA); + BOOL GetMonitorInfoExA(HMONITOR, LPMONITORINFOEXA); BOOL GetMonitorInfoW(HMONITOR, LPMONITORINFO); - BOOL GetMonitorInfoW(HMONITOR, LPMONITORINFOEXW); + BOOL GetMonitorInfoExW(HMONITOR, LPMONITORINFOEXW); HMONITOR MonitorFromPoint(POINT, DWORD); HMONITOR MonitorFromRect(LPCRECT, DWORD); HMONITOR MonitorFromWindow(HWND, DWORD);