kernel32: Added proper support for GetSystemInfo on x86_64.
This commit is contained in:
parent
a18fdfc07e
commit
409033cb6a
|
@ -153,6 +153,9 @@ VOID WINAPI GetSystemInfo(
|
||||||
default: si->dwProcessorType = 0;
|
default: si->dwProcessorType = 0;
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
|
case PROCESSOR_ARCHITECTURE_AMD64:
|
||||||
|
si->dwProcessorType = PROCESSOR_AMD_X8664;
|
||||||
|
break;
|
||||||
default: FIXME("Unknown processor architecture %x\n", sci.Architecture);
|
default: FIXME("Unknown processor architecture %x\n", sci.Architecture);
|
||||||
}
|
}
|
||||||
si->dwAllocationGranularity = sbi.AllocationGranularity;
|
si->dwAllocationGranularity = sbi.AllocationGranularity;
|
||||||
|
|
Loading…
Reference in New Issue