More cleanup and additional

This commit is contained in:
khanhduytran0 committed 2020-08-22 16:07:23 +07:00
1 parent 27b070167b
commit 320c7af46c
10 files changed
+11

No files matched your search

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.
Binary file not shown.
@@ -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");
}
}