Open
Description
KytoDragon reported this on 2024-04-20T12:09:02Z
Transferred from https://issues.dlang.org/show_bug.cgi?id=24515
Description
The function GetMessageExtraInfo in core.sys.windows.winuser is defined as
LONG GetMessageExtraInfo();
but it should be
LPARAM GetMessageExtraInfo();
as seen here: https://learn.microsoft.com/en-us/windows/win32/api/winuser/nf-winuser-getmessageextrainfo
This results in compilation errors on x64 Windows systems.