Writes out a series of tabs to the CurrentOutputFile
| 9579 | |
| 9580 | // Writes out a series of tabs to the CurrentOutputFile |
| 9581 | void CDallasMainDlg::TabOver(void) { |
| 9582 | int j; |
| 9583 | |
| 9584 | if (CurrentOutputFile == NULL) |
| 9585 | return; |
| 9586 | |
| 9587 | for (j = 0; j < CurrentTabLevel; j++) |
| 9588 | cfprintf(CurrentOutputFile, "\t"); |
| 9589 | } |
| 9590 | |
| 9591 | // Create the source script CPP file |
| 9592 | int CDallasMainDlg::CreateScriptFile(char *filename) { |
nothing calls this directly
no test coverage detected