More cleanup and additional

This commit is contained in:
khanhduytran0 2020-08-22 16:07:23 +07:00
parent 27b070167b
commit 320c7af46c
10 changed files with 11 additions and 0 deletions

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

View 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");
}
}