Writes a page to the "remaining pages" log file
| 2134 | |
| 2135 | // Writes a page to the "remaining pages" log file |
| 2136 | void 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 |
| 2146 | void WriteToRemovedLog(char *name, int type) { |
no test coverage detected