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

Function WriteToRemainingLog

editor/TableFileFilterMng.cpp:2136–2143  ·  view source on GitHub ↗

Writes a page to the "remaining pages" log file

Source from the content-addressed store, hash-verified

2134
2135// Writes a page to the "remaining pages" log file
2136void WriteToRemainingLog(char *name, int type) {
2137 if (remaining_log_file != NULL) {
2138 CString line, type_string;
2139 GetPageTypeString(type, type_string);
2140 line.Format("%s\t%s", type_string, name);
2141 cf_WriteString(remaining_log_file, line.GetBuffer(0));
2142 }
2143}
2144
2145// Writes a page to the "removed pages" log file
2146void WriteToRemovedLog(char *name, int type) {

Callers 1

CreateNewTableFileMethod · 0.85

Calls 3

GetPageTypeStringFunction · 0.85
cf_WriteStringFunction · 0.85
GetBufferMethod · 0.80

Tested by

no test coverage detected