hedgewars/uPhysFSLayer.pas
branchwebgl
changeset 8839 caa57115d7ea
parent 8833 c13ebed437cb
child 9127 e350500c4edb
equal deleted inserted replaced
8836:7a474fcc343d 8839:caa57115d7ea
    41 uses uUtils, uVariables, sysutils;
    41 uses uUtils, uVariables, sysutils;
    42 {$ENDIF}
    42 {$ENDIF}
    43 
    43 
    44 function PHYSFS_init(argv0: PChar) : LongInt; cdecl; external PhysfsLibName;
    44 function PHYSFS_init(argv0: PChar) : LongInt; cdecl; external PhysfsLibName;
    45 function PHYSFS_deinit() : LongInt; cdecl; external PhysfsLibName;
    45 function PHYSFS_deinit() : LongInt; cdecl; external PhysfsLibName;
    46 function PHYSFSRWOPS_openRead(fname: PChar): PSDL_RWops; cdecl ; external PhyslayerLibName;
    46 function PHYSFSRWOPS_openRead(fname: PChar): PSDL_RWops; cdecl; external PhyslayerLibName;
    47 function PHYSFSRWOPS_openWrite(fname: PChar): PSDL_RWops; cdecl; external PhyslayerLibName;
    47 function PHYSFSRWOPS_openWrite(fname: PChar): PSDL_RWops; cdecl; external PhyslayerLibName;
    48 
    48 
    49 function PHYSFS_mount(newDir, mountPoint: PChar; appendToPath: LongBool) : LongInt; cdecl; external PhysfsLibName;
    49 function PHYSFS_mount(newDir, mountPoint: PChar; appendToPath: LongBool) : LongInt; cdecl; external PhysfsLibName;
    50 function PHYSFS_openRead(fname: PChar): PFSFile; cdecl; external PhysfsLibName;
    50 function PHYSFS_openRead(fname: PChar): PFSFile; cdecl; external PhysfsLibName;
    51 function PHYSFS_eof(f: PFSFile): LongBool; cdecl; external PhysfsLibName;
    51 function PHYSFS_eof(f: PFSFile): LongBool; cdecl; external PhysfsLibName;