iso9660.pp 447 B

123456789101112131415161718192021222324
  1. unit iso9660;
  2. {$mode objfpc}
  3. {$J+}
  4. {$INLINE ON}
  5. {$MACRO ON}
  6. {$ASSERTIONS ON}
  7. interface
  8. uses
  9. ctypes, gctypes, gccore;
  10. const
  11. ISO_MAXPATHLEN = 128;
  12. function ISO9660_Mount(const name: pcchar; const disc_interface: PDISC_INTERFACE): cbool; cdecl; external;
  13. function ISO9660_Unmount(const name: pcchar): cbool; cdecl; external;
  14. function ISO9660_GetVolumeLabel(const name: pcchar): pcchar; cdecl; external;
  15. implementation
  16. initialization
  17. end.