Folks,
is there a way to pass a Byte[] to a function starting at a specific offset. For exmaple:
So I want to pass a byte array but at an offset (in this case 50).Code:// c code void func(unsigned char *arrayPtr) { } unsigned char test[100]; func(&test[50]);
Thanks.




Reply With Quote