MCPcopy Create free account
hub / github.com/DaedalusX64/daedalus / FindFileNext

Function FindFileNext

Source/SysPSP/Utility/IOPSP.cpp:259–272  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

257 }
258
259 bool FindFileNext( FindHandleT handle, FindDataT & data )
260 {
261 #ifdef DAEDALUS_ENABLE_ASSERTS
262 DAEDALUS_ASSERT( handle >= 0, "Cannot search with invalid directory handle" );
263 #endif
264
265 if( sceIoDread( handle, &gDirEntry.Dirent ) > 0 )
266 {
267 IO::Path::Assign( data.Name, gDirEntry.Dirent.d_name );
268 return true;
269 }
270
271 return false;
272 }
273
274 bool FindFileClose( FindHandleT handle )
275 {

Callers 8

FindFileOpenFunction · 0.70
LoadControllerConfigsMethod · 0.50
AddRomDirectoryMethod · 0.50
LoadFoldersMethod · 0.50
Translate_LoadFunction · 0.50
AddStaticContentFunction · 0.50
MakeRomListFunction · 0.50
AddRomDirectoryMethod · 0.50

Calls 1

AssignFunction · 0.85

Tested by 1

MakeRomListFunction · 0.40