From 053510467f9340e68b1ef18c454c544162e2a9a8 Mon Sep 17 00:00:00 2001 From: Thomas Faber Date: Sun, 29 Dec 2019 13:44:59 +0100 Subject: [PATCH] [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