mirror of
https://github.com/reactos/reactos.git
synced 2024-12-28 01:55:19 +00:00
[NDK] RtlFindCharInUnicodeString is only available in user mode.
This commit is contained in:
parent
a385451380
commit
053510467f
1 changed files with 10 additions and 10 deletions
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue