parse.h 769 B

1234567891011121314151617181920212223242526
  1. #ifndef PARSE_H_INCLUDED
  2. #define PARSE_H_INCLUDED
  3. #if defined(__cplusplus)
  4. extern "C" {
  5. #endif
  6. int usage(FILE * const fp, const char *ProgramName);
  7. int short_help(const lame_global_flags * gfp, FILE * const fp, const char *ProgramName);
  8. int long_help(const lame_global_flags * gfp, FILE * const fp, const char *ProgramName,
  9. int lessmode);
  10. int display_bitrates(FILE * const fp);
  11. int parse_args(lame_global_flags * gfp, int argc, char **argv, char *const inPath,
  12. char *const outPath, char **nogap_inPath, int *max_nogap);
  13. void parse_close();
  14. int generateOutPath(char const* inPath, char const* outDir, char const* suffix, char* outPath);
  15. #if defined(__cplusplus)
  16. }
  17. #endif
  18. #endif
  19. /* end of parse.h */