blob: d8c26a1cebe142a41bd89034936da907e73ff688 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
#include "test.h"
int arrayTest(long context, foo * array) {
return 42;
}
int bufferTest(void * object) {
return 42;
}
int mixedTest(long context, void * object, foo * array){
return 42;
}
int doubleTest(long context, void * object1, foo * array1, void * object2, foo * array2) {
return 42;
}
|