MCPcopy Create free account
hub / github.com/DescentDevelopers/Descent3 / ddio_GetTempFileName

Function ddio_GetTempFileName

ddio/winfile.cpp:274–280  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

272}
273
274bool ddio_GetTempFileName(const char *basedir, const char *prefix, char *filename) {
275
276 if (!GetTempFileName(basedir, prefix, 0, filename))
277 return false;
278 else
279 return true;
280}
281
282// These functions allow one to find a file
283// You use FindFileStart by giving it a wildcard (like *.*, *.txt, u??.*, whatever). It returns

Callers 6

ImportGraphicFunction · 0.50
taunt_ImportWaveFunction · 0.50
SetupTempDirectoryFunction · 0.50
LoadMultiDLLFunction · 0.50
InitGameModuleFunction · 0.50

Calls

no outgoing calls

Tested by

no test coverage detected