[NDK] RtlFindCharInUnicodeString is only available in user mode.

This commit is contained in:
Thomas Faber 2019-12-29 13:44:59 +01:00
parent a385451380
commit 053510467f
No known key found for this signature in database
GPG key ID: 076E7C3D44720826

View file

@ -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