| 230 | /* Utils */ |
| 231 | static void ShowHelp(void); |
| 232 | static void ShowCommands(void) |
| 233 | { |
| 234 | fprintf(stdout, "\nCommands:\n"); |
| 235 | fprintf(stdout, " [h]elp Show this message\n"); |
| 236 | fprintf(stdout, " [q]uit Exit HandBrakeCLI\n"); |
| 237 | fprintf(stdout, " [p]ause Pause encoding\n"); |
| 238 | fprintf(stdout, " [r]esume Resume encoding\n"); |
| 239 | } |
| 240 | |
| 241 | static int ParseOptions( int argc, char ** argv ); |
| 242 | static int CheckOptions( int argc, char ** argv ); |