MCPcopy Create free account
hub / github.com/Scobalula/Greyhound / CascFindNextFile

Function CascFindNextFile

src/External/CascLib/src/CascFindFile.cpp:241–256  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

239}
240
241bool WINAPI CascFindNextFile(
242 HANDLE hFind,
243 PCASC_FIND_DATA pFindData)
244{
245 TCascSearch * pSearch;
246
247 pSearch = TCascSearch::IsValid(hFind);
248 if(pSearch == NULL || pFindData == NULL)
249 {
250 SetCascError(ERROR_INVALID_PARAMETER);
251 return false;
252 }
253
254 // Perform search
255 return DoStorageSearch(pSearch, pFindData);
256}
257
258bool WINAPI CascFindClose(HANDLE hFind)
259{

Callers 2

Storage_EnumFilesFunction · 0.85
EnumerateFilesMethod · 0.85

Calls 2

SetCascErrorFunction · 0.85
DoStorageSearchFunction · 0.85

Tested by 1

Storage_EnumFilesFunction · 0.68