10 lines
415 B
Java
10 lines
415 B
Java
import _VisualDVM.Global;
|
|
//https://web.archive.org/web/20140704120535/http://www.codethesis.com/blog/unload-java-jni-dll
|
|
//https://web.archive.org/web/20131202084001/http://www.codeslices.net/snippets/simple-java-custom-class-loader-implementation
|
|
//https://ru-java.livejournal.com/551828.html
|
|
public class Program {
|
|
public static void main(String[] args) throws Exception {
|
|
Global.Init(args);
|
|
}
|
|
}
|