.\" -*- nroff -*- .\" Generated file - DO NOT EDIT! .TH RtlFindCharInUnicodeString 3w "Oct 2012" "Wine API" "Wine API" .SH NAME \fBRtlFindCharInUnicodeString\fR (NTDLL.@) .SH SYNOPSIS NTSTATUS RtlFindCharInUnicodeString ( int \fIflags\fR, const UNICODE_STRING* \fImain_str\fR, const UNICODE_STRING* \fIsearch_chars\fR, USHORT* \fIpos\fR ) .SH PARAMS \fIflags\fR \fB[In]\fR Flags. .PP \fImain_str\fR \fB[In]\fR Unicode string in which one or more characters are searched. .PP \fIsearch_chars\fR \fB[In]\fR Unicode string which contains the characters to search for. .PP \fIpos\fR \fB[Out]\fR Position of the first character found + \fB2.\fR .PP .SH DESCRIPTION .PP Searches for one of several unicode characters in a unicode string. .SH RETURNS .PP \fBSuccess:\fR \fBSTATUS_SUCCESS\fR. \fIpos\fR contains the position after the character found. .PP \fBFailure:\fR \fBSTATUS_NOT_FOUND\fR, if none of the \fIsearch_chars\fR are in \fImain_str\fR. .SH IMPLEMENTATION .PP Declared in \fB"winternl.h"\fR. .PP Implemented in \fB"dlls/ntdll/rtlstr.c"\fR. .PP Debug channel \fB"ntdll"\fR.