| 103 | |
| 104 | |
| 105 | void Usage(_In_ LPCTSTR BaseName) |
| 106 | /*++ |
| 107 | |
| 108 | Routine Description: |
| 109 | |
| 110 | Display simple usage text |
| 111 | |
| 112 | Arguments: |
| 113 | |
| 114 | BaseName - name of executable |
| 115 | |
| 116 | Return Value: |
| 117 | |
| 118 | none |
| 119 | |
| 120 | --*/ |
| 121 | { |
| 122 | FormatToStream(stderr,MSG_USAGE,BaseName); |
| 123 | } |
| 124 | |
| 125 | void CommandUsage(_In_ LPCTSTR BaseName, _In_ LPCTSTR Cmd) |
| 126 | /*++ |
no test coverage detected