Initial commit

This commit is contained in:
Bassem Girgis
2018-12-20 17:34:07 -06:00
parent 7a2d899662
commit 81b4b9e273
34743 changed files with 5940233 additions and 0 deletions

View File

@@ -0,0 +1,15 @@
import java_pragmas.*;
public class java_pragmas_runme {
// No system.loadLibrary() as the JNI class will do this
public static void main(String argv[])
{
// Call a JNI class function. Normally this is not possible as the class is protected, however, the jniclassmodifiers pragma has changed this.
long int_pointer = java_pragmasJNI.get_int_pointer();
java_pragmas.added_function("hello");
}
}