MCPcopy Create free account
hub / github.com/ObEngine/ObEngine / open

Method open

extlibs/soloud/src/core/soloud_file.cpp:104–112  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

102 }
103
104 result DiskFile::open(const char *aFilename)
105 {
106 if (!aFilename)
107 return INVALID_PARAMETER;
108 mFileHandle = fopen(aFilename, "rb");
109 if (!mFileHandle)
110 return FILE_NOT_FOUND;
111 return SO_NO_ERROR;
112 }
113
114 int DiskFile::eof()
115 {

Callers 10

openToMemMethod · 0.45
Soloud_Filehack_fopenFunction · 0.45
WavStreamInstanceMethod · 0.45
loadMethod · 0.45
loadToMemMethod · 0.45
loadMethod · 0.45
loadMethod · 0.45
loadParamsMethod · 0.45
loadMethod · 0.45
loadMethod · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected