https://git.reactos.org/?p=reactos.git;a=commitdiff;h=053510467f9340e68b1ef…
commit 053510467f9340e68b1ef18c454c544162e2a9a8
Author: Thomas Faber <thomas.faber(a)reactos.org>
AuthorDate: Sun Dec 29 13:44:59 2019 +0100
Commit: Thomas Faber <thomas.faber(a)reactos.org>
CommitDate: Tue Dec 31 15:17:53 2019 +0100
[NDK] RtlFindCharInUnicodeString is only available in user mode.
---
sdk/include/ndk/rtlfuncs.h | 20 ++++++++++----------
1 file changed, 10 insertions(+), 10 deletions(-)
diff --git a/sdk/include/ndk/rtlfuncs.h b/sdk/include/ndk/rtlfuncs.h
index 005d761ae73..4809b4a0d65 100644
--- a/sdk/include/ndk/rtlfuncs.h
+++ b/sdk/include/ndk/rtlfuncs.h
@@ -2106,6 +2106,16 @@ RtlDuplicateUnicodeString(
_Out_ PUNICODE_STRING DestinationString
);
+NTSYSAPI
+NTSTATUS
+NTAPI
+RtlFindCharInUnicodeString(
+ _In_ ULONG Flags,
+ _In_ PCUNICODE_STRING SearchString,
+ _In_ PCUNICODE_STRING MatchString,
+ _Out_ PUSHORT Position
+);
+
//
// Memory Functions
//
@@ -2165,16 +2175,6 @@ RtlEqualUnicodeString(
BOOLEAN CaseInsensitive
);
-NTSYSAPI
-NTSTATUS
-NTAPI
-RtlFindCharInUnicodeString(
- _In_ ULONG Flags,
- _In_ PCUNICODE_STRING SearchString,
- _In_ PCUNICODE_STRING MatchString,
- _Out_ PUSHORT Position
-);
-
_IRQL_requires_max_(PASSIVE_LEVEL)
NTSYSAPI
VOID