| 108 | } |
| 109 | |
| 110 | WinConsole::WinConsole() |
| 111 | { |
| 112 | for (S32 iIndex = 0; iIndex < MAX_CMDS; iIndex ++) |
| 113 | rgCmds[iIndex][0] = '\0'; |
| 114 | |
| 115 | iCmdIndex = 0; |
| 116 | winConsoleEnabled = false; |
| 117 | Con::addConsumer(winConsoleConsumer); |
| 118 | inpos = 0; |
| 119 | lineOutput = false; |
| 120 | |
| 121 | Process::notify(this, &WinConsole::process, PROCESS_LAST_ORDER); |
| 122 | } |
| 123 | |
| 124 | WinConsole::~WinConsole() |
| 125 | { |
nothing calls this directly
no test coverage detected