| 144 | } |
| 145 | |
| 146 | void Failure(_In_ LPCTSTR BaseName, _In_ LPCTSTR Cmd) |
| 147 | /*++ |
| 148 | |
| 149 | Routine Description: |
| 150 | |
| 151 | Display simple error text for general failure |
| 152 | |
| 153 | Arguments: |
| 154 | |
| 155 | BaseName - name of executable |
| 156 | |
| 157 | Return Value: |
| 158 | |
| 159 | none |
| 160 | |
| 161 | --*/ |
| 162 | { |
| 163 | FormatToStream(stderr,MSG_FAILURE,BaseName,Cmd); |
| 164 | } |
| 165 | |
| 166 | BOOL Reboot() |
| 167 | /*++ |
no test coverage detected