blob: b15b7e557f0f8499dc279dc8caab8eefc909d42f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
typedef unsigned long foo;
int arrayTest(long context, foo * array );
int bufferTest(void * object);
int manyBuffersTest(void * object1, void * object2, void * object3, void * object4, void * object5);
int mixedTest(long context, void * object, foo * array );
int doubleTest(long context, void * object1, foo * array1, void * object2, foo * array2 );
|