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 / obput.h < prev    next >
C/C++ Source or Header  |  1993-01-23  |  1KB  |  43 lines

  1. #ifndef _OBPUT_H
  2. #define _OBPUT_H    1
  3.  
  4. /**************************************************************************
  5. * obput.h:    Specific definitions for ObPut.
  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    ObPut(char *patchString, char *filename);
  26. BOOL    LookAtFileSize(PATCHINFO *pi, char *filename);
  27.  
  28. /***************************************************************************
  29. * Global variables.
  30. ***************************************************************************/
  31.  
  32. extern char programName[];
  33. extern int thePrintStyle;
  34.  
  35. /***************************************************************************
  36. * Stuff for getopt().
  37. ***************************************************************************/
  38.  
  39. static char *options = "qQl";
  40.  
  41.  
  42. #endif /* _OBPUT_H */
  43.