.\" -*- nroff -*- .\" Generated file - DO NOT EDIT! .TH PathFindSuffixArrayA 3w "Oct 2012" "Wine API" "Wine API" .SH NAME \fBPathFindSuffixArrayA\fR (SHLWAPI.@) .SH SYNOPSIS LPCSTR PathFindSuffixArrayA ( LPCSTR \fIlpszSuffix\fR, LPCSTR* \fIlppszArray\fR, int \fIdwCount\fR ) .SH DESCRIPTION .PP Find a suffix string in an array of suffix strings. .SH PARAMS \fIlpszSuffix\fR \fB[In]\fR Suffix string to search for. .PP \fIlppszArray\fR \fB[In]\fR Array of suffix strings to search. .PP \fIdwCount\fR \fB[In]\fR Number of elements in \fIlppszArray\fR. .PP .SH RETURNS .PP \fBSuccess:\fR The index of the position of \fIlpszSuffix\fR in \fIlppszArray\fR .PP \fBFailure:\fR \fB0\fR, if any parameters are invalid or \fIlpszSuffix\fR is not found. .SH NOTES .PP The search is case sensitive. The match is made against the end of the suffix string, so for example: \fIlpszSuffix\fR=\fB"fooBAR"\fR matches \fB"BAR"\fR, but \fIlpszSuffix\fR=\fB"fooBARfoo"\fR does not. .SH IMPLEMENTATION .PP Declared in \fB"shlwapi.h"\fR. .PP Implemented in \fB"dlls/shlwapi/path.c"\fR. .PP Debug channel \fB"shell"\fR.