RtlFindCharInUnicodeString (NTDLL.@)
NTSTATUS RtlFindCharInUnicodeString ( int flags, const UNICODE_STRING* main_str, const UNICODE_STRING* search_chars, USHORT* pos )
flags | [In] | Flags. |
main_str | [In] | Unicode string in which one or more characters are searched. |
search_chars | [In] | Unicode string which contains the characters to search for. |
pos | [Out] | Position of the first character found + 2. |
Searches for one of several unicode characters in a unicode string.
Success: STATUS_SUCCESS. pos contains the position after the character found.
Failure: STATUS_NOT_FOUND, if none of the search_chars are in main_str.
Declared in "include/winternl.h". gitlab.winehq.org/wine/wine/blob/master/include/winternl.h
Implemented in "dlls/ntdll/rtlstr.c". gitlab.winehq.org/wine/wine/blob/master/dlls/ntdll/rtlstr.c
Debug channel "ntdll".
Copyright © 2024 The Wine Project. All trademarks are the property of their respective owners. Visit WineHQ for license details. Generated Nov 2024.