hedgewars/uPhysFSLayer.pas
changeset 10015 4feced261c68
parent 10009 88929358d2e1
parent 9950 2759212a27de
child 10078 8572d1f8b2f0
equal deleted inserted replaced
10014:56d2f2d5aad8 10015:4feced261c68
    38 implementation
    38 implementation
    39 uses uUtils, uVariables, sysutils;
    39 uses uUtils, uVariables, sysutils;
    40 
    40 
    41 function PHYSFS_init(argv0: PChar) : LongInt; cdecl; external PhysfsLibName;
    41 function PHYSFS_init(argv0: PChar) : LongInt; cdecl; external PhysfsLibName;
    42 function PHYSFS_deinit() : LongInt; cdecl; external PhysfsLibName;
    42 function PHYSFS_deinit() : LongInt; cdecl; external PhysfsLibName;
    43 function PHYSFSRWOPS_openRead(fname: PChar): PSDL_RWops; cdecl ; external PhyslayerLibName;
    43 function PHYSFSRWOPS_openRead(fname: PChar): PSDL_RWops; cdecl; external PhyslayerLibName;
    44 function PHYSFSRWOPS_openWrite(fname: PChar): PSDL_RWops; cdecl; external PhyslayerLibName;
    44 function PHYSFSRWOPS_openWrite(fname: PChar): PSDL_RWops; cdecl; external PhyslayerLibName;
    45 
    45 
    46 function PHYSFS_mount(newDir, mountPoint: PChar; appendToPath: LongBool) : LongBool; cdecl; external PhysfsLibName;
    46 function PHYSFS_mount(newDir, mountPoint: PChar; appendToPath: LongBool) : LongBool; cdecl; external PhysfsLibName;
    47 function PHYSFS_openRead(fname: PChar): PFSFile; cdecl; external PhysfsLibName;
    47 function PHYSFS_openRead(fname: PChar): PFSFile; cdecl; external PhysfsLibName;
    48 function PHYSFS_eof(f: PFSFile): LongBool; cdecl; external PhysfsLibName;
    48 function PHYSFS_eof(f: PFSFile): LongBool; cdecl; external PhysfsLibName;