[NTOS] Make RtlFindCharInUnicodeString available in the kernel.

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

View file

@ -22,4 +22,16 @@ RtlInitializeRangeListPackage(
VOID
);
#define RTL_FIND_CHAR_IN_UNICODE_STRING_START_AT_END 1
#define RTL_FIND_CHAR_IN_UNICODE_STRING_COMPLEMENT_CHAR_SET 2
#define RTL_FIND_CHAR_IN_UNICODE_STRING_CASE_INSENSITIVE 4
NTSTATUS
NTAPI
RtlFindCharInUnicodeString(
_In_ ULONG Flags,
_In_ PCUNICODE_STRING SearchString,
_In_ PCUNICODE_STRING MatchString,
_Out_ PUSHORT Position
);
/* EOF */