2021-11-23 03:05:53 +01:00
|
|
|
package com.jozufozu.flywheel.util;
|
|
|
|
|
|
|
|
public interface WriteUnsafe {
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Write the contents of this object into sequential memory starting at the given address.
|
|
|
|
*/
|
2021-12-23 01:11:56 +01:00
|
|
|
void writeUnsafe(long ptr);
|
2021-11-23 03:05:53 +01:00
|
|
|
}
|