home *** CD-ROM | disk | FTP | other *** search
/ Audio 4.94 - Over 11,000 Files / audio-11000.iso / amiga / midi / obrst103.lha / OberSuite-1.03 / SourceCode / obget.h < prev    next >
C/C++ Source or Header  |  1993-01-23  |  1KB  |  43 lines

  1. #ifndef _OBGET_H
  2. #define _OBGET_H    1
  3.  
  4. /**************************************************************************
  5. * obget.h:    Specific definitions for ObGet.
  6. *        A part of OberSuite for the Commodore Amiga.
  7. *
  8. * Author:    Daniel Barrett, barrett@cs.umass.edu.
  9. * Version:    1.0.
  10. * Copyright:    None!  This program is in the Public Domain.
  11. *        Please share it with others.
  12. ***************************************************************************/
  13.  
  14. /***************************************************************************
  15. * Program version.
  16. ***************************************************************************/
  17.  
  18. #define    VERSION        "1.03"
  19. #define    VERDATE        "(21.1.93)"
  20.  
  21. /***************************************************************************
  22. * Prototypes
  23. ***************************************************************************/
  24.  
  25. void    ObGet(char *patchString, char *filename);
  26.  
  27. /***************************************************************************
  28. * Global variables
  29. ***************************************************************************/
  30.  
  31. extern char programName[];
  32. extern int thePrintStyle;
  33. int overwriteAll;
  34.  
  35. /***************************************************************************
  36. * Stuff for getopt().
  37. ***************************************************************************/
  38.  
  39. static char *options = "qQla";
  40.  
  41.  
  42. #endif /* _OBGET_H */
  43.