blob: e53dc93cc12604c680deb428634e79cbeec80dfb [file] [log] [blame]
package ncai.funcs;
/**
* @author Petr Ivanov
*
*/
public class GetAllModules03 {
public static native void TestFunction();
static boolean NoLibrary = false;
static {
try{
System.loadLibrary("GetAllModules03");
}
catch(Throwable e){
NoLibrary = true;
}
}
static public void main(String args[]) {
if(NoLibrary) return;
TestFunction();
special_method();
return;
}
static public void special_method() {
/*
* Transfer control to native part.
*/
try {
throw new InterruptedException();
} catch (Throwable tex) { }
return;
}
}