sb101
September 30th, 2008, 10:05 AM
Folks,
is there a way to pass a Byte[] to a function starting at a specific offset. For exmaple:
// 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.
is there a way to pass a Byte[] to a function starting at a specific offset. For exmaple:
// 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.