Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- package net.sf.junace;
- public class Main {
- static {
- try{
- System.loadLibrary("junace");
- }
- catch(Throwable e) {
- System.err.printf(e.getMessage());
- System.exit(1);
- }
- }
- public static void main(String[] args) {
- UnACE unACE = new UnACE();
- try{
- unACE.LoadAceDll();
- }
- catch(UnsatisfiedLinkError e) {
- System.err.printf(e.getMessage());
- System.exit(1);
- }
- unACE.nativeACEList("", null);
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment