Home | History | Annotate | Download | only in src

Lines Matching refs:sysInfo

419     // Get the app sysinfo state (the one hidden by WOW64)

420 SYSTEM_INFO sysInfo;
421 GetSystemInfo(&sysInfo);
422 WORD programArch = sysInfo.wProcessorArchitecture;
423 // Check the real sysinfo state (not the one hidden by WOW64) for x86
424 GetNativeSystemInfo(&sysInfo);
425 WORD actualArch = sysInfo.wProcessorArchitecture;
491 // Check the real sysinfo state (not the one hidden by WOW64) for x86
492 SYSTEM_INFO sysInfo;
493 GetNativeSystemInfo(&sysInfo);
495 if (sysInfo.wProcessorArchitecture == PROCESSOR_ARCHITECTURE_AMD64) {