blob: f51a3b351590d561b462d5ebd1234255746d89e8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
unit iso9660;
{$mode objfpc}
{$J+}
{$INLINE ON}
{$MACRO ON}
{$ASSERTIONS ON}
interface
uses
ctypes, gctypes;
const
ISO_MAXPATHLEN = 128;
function ISO9660_Mount: cbool; cdecl; external;
function ISO9660_Unmount: cbool; cdecl; external;
function ISO9660_LastAccess: cuint64; cdecl; external;
implementation
initialization
end.
|