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

Function WriteToRemovedLog

editor/TableFileFilterMng.cpp:2146–2153  ·  view source on GitHub ↗

Writes a page to the "removed pages" log file

Source from the content-addressed store, hash-verified

2144
2145// Writes a page to the "removed pages" log file
2146void WriteToRemovedLog(char *name, int type) {
2147 if (removed_log_file != NULL) {
2148 CString line, type_string;
2149 GetPageTypeString(type, type_string);
2150 line.Format("%s\t%s", type_string, name);
2151 cf_WriteString(removed_log_file, line.GetBuffer(0));
2152 }
2153}
2154
2155// Closes the Filter Log Files
2156void CloseFilterLogFiles(void) {

Callers 1

CreateNewTableFileMethod · 0.85

Calls 3

GetPageTypeStringFunction · 0.85
cf_WriteStringFunction · 0.85
GetBufferMethod · 0.80

Tested by

no test coverage detected