MCPcopy Create free account
hub / github.com/cemu-project/Cemu / SaveFile

Method SaveFile

src/util/tinyxml2/tinyxml2.cpp:2241–2251  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

2239
2240
2241 XMLError XMLDocument::SaveFile(const char* filename, bool compact)
2242 {
2243 FILE* fp = callfopen(filename, "w");
2244 if (!fp) {
2245 SetError(XML_ERROR_FILE_COULD_NOT_BE_OPENED, filename, 0, 0);
2246 return _errorID;
2247 }
2248 SaveFile(fp, compact);
2249 fclose(fp);
2250 return _errorID;
2251 }
2252
2253
2254 XMLError XMLDocument::SaveFile(FILE* fp, bool compact)

Callers 3

CreateShortcutMethod · 0.80
SaveScreenshotToFileFunction · 0.80
SaveMethod · 0.80

Calls 2

callfopenFunction · 0.85
ClearErrorFunction · 0.85

Tested by

no test coverage detected