kernel32: Added proper support for GetSystemInfo on x86_64.

This commit is contained in:
Eric Pouech 2010-04-15 22:16:52 +02:00 committed by Alexandre Julliard
parent a18fdfc07e
commit 409033cb6a
1 changed files with 3 additions and 0 deletions

View File

@ -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;