You've already forked wine-staging
mirror of
https://gitlab.winehq.org/wine/wine-staging.git
synced 2025-04-13 14:42:51 -07:00
Rebase against 9d75caf4e1deea0ec8d5ad3f829e7218bc1e3c16
This commit is contained in:
@ -1,29 +0,0 @@
|
||||
From 317b8941e2c36fd568799915c8023332b5054331 Mon Sep 17 00:00:00 2001
|
||||
From: Zebediah Figura <z.figura12@gmail.com>
|
||||
Date: Sat, 6 Apr 2019 21:31:55 -0500
|
||||
Subject: [PATCH] ntdll: Add stub for
|
||||
NtQuerySystemInformation(SystemExtendedProcessInformation).
|
||||
|
||||
---
|
||||
dlls/ntdll/nt.c | 5 +++++
|
||||
1 file changed, 5 insertions(+)
|
||||
|
||||
diff --git a/dlls/ntdll/nt.c b/dlls/ntdll/nt.c
|
||||
index f42934969..c019a9c29 100644
|
||||
--- a/dlls/ntdll/nt.c
|
||||
+++ b/dlls/ntdll/nt.c
|
||||
@@ -2768,6 +2768,11 @@ NTSTATUS WINAPI NtQuerySystemInformation(
|
||||
}
|
||||
}
|
||||
break;
|
||||
+ case SystemExtendedProcessInformation:
|
||||
+ FIXME("SystemExtendedProcessInformation, len %u, buffer %p, stub!\n", Length, SystemInformation);
|
||||
+ memset(SystemInformation, 0, Length);
|
||||
+ ret = STATUS_SUCCESS;
|
||||
+ break;
|
||||
default:
|
||||
FIXME("(0x%08x,%p,0x%08x,%p) stub\n",
|
||||
SystemInformationClass,SystemInformation,Length,ResultLength);
|
||||
--
|
||||
2.20.1
|
||||
|
@ -1 +0,0 @@
|
||||
Fixes: [46870] League of Legends 8.12+ fails to start a game in Vista+ mode (anticheat engine, SystemExtendedProcessInformation)
|
Reference in New Issue
Block a user