#1728 Fixed x86 crash on Windows.

This commit is contained in:
XMRig
2020-06-10 23:09:11 +07:00
parent e4779ab6ca
commit 1b928e8bf1

View File

@ -34,7 +34,7 @@
static inline OSVERSIONINFOEX winOsVersion()
{
using RtlGetVersionFunction = NTSTATUS (*)(LPOSVERSIONINFO);
typedef NTSTATUS (NTAPI *RtlGetVersionFunction)(LPOSVERSIONINFO);
OSVERSIONINFOEX result = { sizeof(OSVERSIONINFOEX), 0, 0, 0, 0, {'\0'}, 0, 0, 0, 0, 0};
HMODULE ntdll = GetModuleHandleW(L"ntdll.dll");