app.h 1.2 KB

12345678910111213141516171819202122232425262728293031
  1. /* $OpenBSD: app.h,v 1.1 2003/08/24 22:15:56 naddy Exp $ */
  2. /*
  3. * Copyright (C) 1990 Regents of the University of California.
  4. *
  5. * Permission to use, copy, modify, distribute, and sell this software and
  6. * its documentation for any purpose is hereby granted without fee,
  7. * provided that the above copyright notice appear in all copies and that
  8. * both that copyright notice and this permission notice appear in
  9. * supporting documentation, and that the name of the University of
  10. * California not be used in advertising or publicity pertaining to
  11. * distribution of the software without specific, written prior
  12. * permission. the University of California makes no representations
  13. * about the suitability of this software for any purpose. It is provided
  14. * "as is" without express or implied warranty.
  15. */
  16. typedef struct {
  17. char *file;
  18. char *device;
  19. Boolean debug;
  20. Boolean display_timer;
  21. float volbase;
  22. float volpcent;
  23. int replayThreshold;
  24. int pauseSkipInterval;
  25. int scanSkipInterval;
  26. float scanPauseInterval;
  27. float pausePauseInterval;
  28. char *cdInfoDir;
  29. } AppData;