proto.h 492 B

12345678910111213141516171819202122232425
  1. #ifndef __PROTO_H__
  2. #define __PROTO_H__
  3. #define DEFAULT_WIDTH 720
  4. #define DEFAULT_HEIGHT 480
  5. /* start */
  6. int start_mon(const char *, const char *, int, int, int,
  7. const char *, int, int, int);
  8. /* select.c */
  9. int select_mon(const char *);
  10. /* stop.c */
  11. int stop_mon(const char *);
  12. /* list.c */
  13. void list_mon();
  14. void print_list(FILE *);
  15. int check_mon(const char *);
  16. void list_cmd(const char *, FILE *);
  17. char *get_path(const char *, int);
  18. void list_files(const char *, FILE *);
  19. #endif