=?UTF-8?Q?Andr=C3=A9=20Hentschel=20?=: kernel32: Add stub case for ARM64 in GetSystemInfo.

Alexandre Julliard julliard at winehq.org
Mon Nov 19 15:59:37 CST 2018


Module: wine
Branch: master
Commit: 014f9c09294dd3945dc4e943e697ae52c3f2c844
URL:    https://source.winehq.org/git/wine.git/?a=commit;h=014f9c09294dd3945dc4e943e697ae52c3f2c844

Author: André Hentschel <nerv at dawncrow.de>
Date:   Fri Nov 16 22:51:18 2018 +0100

kernel32: Add stub case for ARM64 in GetSystemInfo.

Wine-Bug: https://bugs.winehq.org/show_bug.cgi?id=46092
Signed-off-by: André Hentschel <nerv at dawncrow.de>
Signed-off-by: Alexandre Julliard <julliard at winehq.org>

---

 dlls/kernel32/cpu.c | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/dlls/kernel32/cpu.c b/dlls/kernel32/cpu.c
index 89482a6..84385c7 100644
--- a/dlls/kernel32/cpu.c
+++ b/dlls/kernel32/cpu.c
@@ -157,6 +157,9 @@ VOID WINAPI GetSystemInfo(
         default: si->dwProcessorType = PROCESSOR_ARM920;
         }
         break;
+    case PROCESSOR_ARCHITECTURE_ARM64:
+        si->dwProcessorType = 0;
+        break;
     default:
         FIXME("Unknown processor architecture %x\n", sci.Architecture);
         si->dwProcessorType = 0;




More information about the wine-cvs mailing list