PathFindSuffixArrayA (SHLWAPI.@)
LPCSTR PathFindSuffixArrayA ( LPCSTR lpszSuffix, LPCSTR* lppszArray, int dwCount )
Find a suffix string in an array of suffix strings.
lpszSuffix | [In] | Suffix string to search for. |
lppszArray | [In] | Array of suffix strings to search. |
dwCount | [In] | Number of elements in lppszArray. |
Success: The index of the position of lpszSuffix in lppszArray
Failure: 0, if any parameters are invalid or lpszSuffix is not found.
The search is case sensitive. The match is made against the end of the suffix string, so for example: lpszSuffix="fooBAR" matches "BAR", but lpszSuffix="fooBARfoo" does not.
Declared in "include/shlwapi.h". gitlab.winehq.org/wine/wine/blob/master/include/shlwapi.h
Implemented in "dlls/shlwapi/path.c". gitlab.winehq.org/wine/wine/blob/master/dlls/shlwapi/path.c
Debug channel "shell".
Copyright © 2024 The Wine Project. All trademarks are the property of their respective owners. Visit WineHQ for license details. Generated Nov 2024.