| 123 | } |
| 124 | |
| 125 | void CommandUsage(_In_ LPCTSTR BaseName, _In_ LPCTSTR Cmd) |
| 126 | /*++ |
| 127 | |
| 128 | Routine Description: |
| 129 | |
| 130 | Invalid command usage |
| 131 | Display how to get help on command |
| 132 | |
| 133 | Arguments: |
| 134 | |
| 135 | BaseName - name of executable |
| 136 | |
| 137 | Return Value: |
| 138 | |
| 139 | none |
| 140 | |
| 141 | --*/ |
| 142 | { |
| 143 | FormatToStream(stderr,MSG_COMMAND_USAGE,BaseName,Cmd); |
| 144 | } |
| 145 | |
| 146 | void Failure(_In_ LPCTSTR BaseName, _In_ LPCTSTR Cmd) |
| 147 | /*++ |
no test coverage detected