blob: 60b8764cfd535e35a4558c2da37244dc4e065cf3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
Package test
Style AllStatic
JavaClass DynBindingTest
JavaOutputDir java
NativeOutputDir native
CustomCCode #include "test.h"
Import com.jogamp.common.nio.*
EmitProcAddressTable true
ProcAddressTableClassName Table
GetProcAddressTableExpr table
ProcAddressNameExpr $UpperCase(arg)
ForceProcAddressGen __ALL__
CustomJavaCode DynBindingTest private final static Table table;
CustomJavaCode DynBindingTest static {
CustomJavaCode DynBindingTest table = new Table();
CustomJavaCode DynBindingTest //table.reset();
CustomJavaCode DynBindingTest }
RenameJavaMethod arrayTest fancyArrayTest
|