advapi32-Token_Integrity_Level: Correct rebase.

This commit is contained in:
Zebediah Figura 2020-06-16 19:38:49 -05:00
parent 984d402240
commit 03f5adcafb

View File

@ -1,4 +1,4 @@
From 2366247c3c27b1b815420c54ce4f94458b580686 Mon Sep 17 00:00:00 2001
From 5119eda2439a1fb81042f85ec76e5e5794ab4182 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Michael=20M=C3=BCller?= <michael@fds-team.de>
Date: Sat, 5 Aug 2017 01:45:29 +0200
Subject: [PATCH] ntdll: Add function to create new tokens for elevation
@ -7,11 +7,11 @@ Subject: [PATCH] ntdll: Add function to create new tokens for elevation
---
dlls/ntdll/ntdll.spec | 3 ++
dlls/ntdll/ntdll_misc.h | 3 ++
dlls/ntdll/process.c | 26 +++++++++++++
dlls/ntdll/process.c | 18 +++++++++
server/protocol.def | 8 ++++
server/security.h | 1 +
server/token.c | 84 +++++++++++++++++++++++++++++++++++++++++
6 files changed, 125 insertions(+)
6 files changed, 117 insertions(+)
diff --git a/dlls/ntdll/ntdll.spec b/dlls/ntdll/ntdll.spec
index 0d19e12768f..e313d5807b3 100644
@ -42,10 +42,10 @@ index 2de9553f5c4..84801ab2f25 100644
extern const char *build_dir DECLSPEC_HIDDEN;
extern const char *data_dir DECLSPEC_HIDDEN;
diff --git a/dlls/ntdll/process.c b/dlls/ntdll/process.c
index a14b24219fc..3d4887d89fc 100644
index a14b24219fc..5d50a7a1363 100644
--- a/dlls/ntdll/process.c
+++ b/dlls/ntdll/process.c
@@ -108,6 +108,32 @@ HANDLE CDECL __wine_make_process_system(void)
@@ -108,6 +108,24 @@ HANDLE CDECL __wine_make_process_system(void)
return ret;
}
@ -66,14 +66,6 @@ index a14b24219fc..3d4887d89fc 100644
+ SERVER_END_REQ;
+ return ret;
+}
+
+static UINT process_error_mode;
+
+#define UNIMPLEMENTED_INFO_CLASS(c) \
+ case c: \
+ FIXME("(process=%p) Unimplemented information class: " #c "\n", ProcessHandle); \
+ ret = STATUS_INVALID_INFO_CLASS; \
+ break
+
ULONG_PTR get_system_affinity_mask(void)
{