Hi Igor. I wonder if I can do the following.�
I have to pass a ByteArray to a function that expects an already malloced char*.
So far it is working fine. Now...what I would like is from the image side to allocate a ByteArray of size + 4. I need to reserve the first 4 bytes of the ByteArray for something. But the library I am calling doesn't let me specify where to start from that char*.�
So...can I cheat? I mean, can I allocate ByteArray+4 in the image, but when passing it as an argument somehow say "ok, take this ByteArray but think the the beginning is the byte 4" ?
or something like that ?