iso9660.pp 337 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;
  10. const
  11. ISO_MAXPATHLEN = 128;
  12. function ISO9660_Mount: cbool; cdecl; external;
  13. function ISO9660_Unmount: cbool; cdecl; external;
  14. function ISO9660_LastAccess: cuint64; cdecl; external;
  15. implementation
  16. initialization
  17. end.