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