Folks,

is there a way to pass a Byte[] to a function starting at a specific offset. For exmaple:

Code:
// c code
void func(unsigned char *arrayPtr) {
}

unsigned char test[100];
func(&test[50]);
So I want to pass a byte array but at an offset (in this case 50).

Thanks.