The read8 method of the DllLib class contains the following signatures:
read8(Object ptr, int ofs)
read8(int ptr, int ofs)
read8(int ptr)
Reads eight bytes of data from the memory location that is specified by a base address and an offset.
public static native long read8(Object ptr, int ofs);
Returns the bytes that are read.
ptr | The base address to write to. |
ofs | The offset from the base address. |
Reads eight bytes of data from the memory location that is specified by a base address and an offset.
public static native long read8(int ptr, int ofs);
Returns the bytes that are read.
ptr | The base address to write to. |
ofs | The offset from the base address. |
Reads a long integer from a specified memory location.
public static long read8(int ptr);
Returns the long integer that is read.
ptr | The base address to write to. |