defaults.h 666 B

12345678910111213141516171819202122232425
  1. /*
  2. * Header file defaults.h - assorted default values for character strings in
  3. * the volume descriptor.
  4. *
  5. * $Id: defaults.h,v 1.8 1999/03/02 03:41:25 eric Exp $
  6. */
  7. #define PREPARER_DEFAULT NULL
  8. #define PUBLISHER_DEFAULT NULL
  9. #ifndef APPID_DEFAULT
  10. #define APPID_DEFAULT PACKAGE_NAME " ISO 9660 filesystem builder"
  11. #endif
  12. #define COPYRIGHT_DEFAULT NULL
  13. #define BIBLIO_DEFAULT NULL
  14. #define ABSTRACT_DEFAULT NULL
  15. #define VOLSET_ID_DEFAULT NULL
  16. #define VOLUME_ID_DEFAULT "CDROM"
  17. #define BOOT_CATALOG_DEFAULT "boot.catalog"
  18. #define BOOT_IMAGE_DEFAULT NULL
  19. #define SYSTEM_ID_DEFAULT "GNU"
  20. #ifdef __MINGW32__
  21. #define fseeko fseeko64
  22. #endif