methodpool: also call native methods
[mate.git] / ffi / native.c
1 #include <stdio.h>
2
3 void tests_Native1__printSomething____V(void)
4 {
5         printf("printSomething: woot \\o/\n");
6 }
7
8 void tests_Native1__printSomething___I_V(int a)
9 {
10         printf("printSomething: 0x%08x\n", a);
11 }