Searched refs:lppszArray (Results 1 – 1 of 1) sorted by relevance
/reactos/dll/win32/shlwapi/ |
H A D | path.c | 3998 TRACE("(%s,%p,%d)\n",debugstr_a(lpszSuffix), lppszArray, dwCount); in PathFindSuffixArrayA() 4000 if (lpszSuffix && lppszArray && dwCount > 0) in PathFindSuffixArrayA() 4006 size_t dwCompareLen = strlen(*lppszArray); in PathFindSuffixArrayA() 4009 if (!strcmp(lpszSuffix + dwLen - dwCompareLen, *lppszArray)) in PathFindSuffixArrayA() 4010 return *lppszArray; /* Found */ in PathFindSuffixArrayA() 4013 lppszArray++; in PathFindSuffixArrayA() 4029 TRACE("(%s,%p,%d)\n",debugstr_w(lpszSuffix), lppszArray, dwCount); in PathFindSuffixArrayW() 4031 if (lpszSuffix && lppszArray && dwCount > 0) in PathFindSuffixArrayW() 4037 size_t dwCompareLen = strlenW(*lppszArray); in PathFindSuffixArrayW() 4041 return *lppszArray; /* Found */ in PathFindSuffixArrayW() [all …]
|