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