blob: c511a534d087eb8ed27a2e72cbef7aed47ad3175 (
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
|
#include "test.h"
int arrayTest(long context, foo * array) {
return 42;
}
int bufferTest(void * object) {
return 42;
}
void pbTest(size_t * object) {
}
int manyBuffersTest(void * object1, void * object2, void * object3, void * object4, void * object5) {
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;
}
|