This structure is used to access Java arrays of bytes from native RNI code.
typedef struct ClassArrayOfByte
{
const int32_t MSReserved;
const unsigned long length;
char body[1];
} ClassArrayOfByte;
MSReserved | Reserved for the Microsoft VM. |
length | The length of the array (in bytes). |
body | A variable length array of characters (it is declared as one element because not all C compilers support [] declarations). |