The write8 method of the DllLib class contains the following signatures:
write8(Object ptr, int ofs, long val)
write8(int ptr, int ofs, long val)
write8(int ptr, long val)
Writes eight bytes of data to the memory location that is specified by a base address and an offset.
public static native void write8(Object ptr, int ofs, long val);
ptr | The base address to write to. |
ofs | The offset from the base address. |
val | The value to write. |
Writes eight bytes of data to the memory location that is specified by a base address and an offset.
public static native void write8(int ptr, int ofs, long val);
ptr | The base address to write to. |
ofs | The offset from the base address. |
val | The value to write. |
Writes a long integer to the specified memory location.
public static void write8(int ptr, long val);
ptr | The address in memory where the long integer will be written. |
val | The value to write. |