mirror of
https://github.com/AngelAuraMC/Amethyst-Android.git
synced 2026-04-19 09:07:06 -04:00
More cleanup and additional
This commit is contained in:
11
app/src/main/java/net/kdt/pojavlaunch/BinaryExecutor.java
Normal file
11
app/src/main/java/net/kdt/pojavlaunch/BinaryExecutor.java
Normal file
@@ -0,0 +1,11 @@
|
||||
package net.kdt.pojavlaunch;
|
||||
|
||||
// This class load and execute PIE binary using dlopen and dlsym("main")
|
||||
public class BinaryExecutor
|
||||
{
|
||||
public static native int executeBinary(String[] args);
|
||||
|
||||
static {
|
||||
System.loadLibrary("binexecutor");
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user