Tao.PhysFs SDK Documentation

Fs.PHYSFS_read Method

Read a byte array from a PhysicsFS filehandle.

Overload List

Read a byte array from a PhysicsFS filehandle.

public static long PHYSFS_read(IntPtr,out byte[],uint,uint);

Read a char array from a PhysicsFS filehandle.

public static long PHYSFS_read(IntPtr,out char[],uint,uint);

Read a double array from a PhysicsFS filehandle.

public static long PHYSFS_read(IntPtr,out double[],uint,uint);

Read a array of short values from a PhysicsFS filehandle.

public static long PHYSFS_read(IntPtr,out short[],uint,uint);

Read a integer array from a PhysicsFS filehandle.

public static long PHYSFS_read(IntPtr,out int[],uint,uint);

Read a array of long values from a PhysicsFS filehandle.

public static long PHYSFS_read(IntPtr,out long[],uint,uint);

Read data from a PhysicsFS filehandle to a buffer location which already has memory allocated to it.

public static long PHYSFS_read(IntPtr,IntPtr,uint,uint);

Read data from a PhysicsFS filehandle. Buffer memory is allocated for you.

public static long PHYSFS_read(IntPtr,out IntPtr,uint,uint);

Read a float array from a PhysicsFS filehandle.

public static long PHYSFS_read(IntPtr,out float[],uint,uint);

See Also

Fs Class | Tao.PhysFs Namespace | PHYSFS_eof