This structure serves as a base structure from which others that access Java arrays are derived.
typedef struct
{
const int32_t MSReserved;
const unsigned long length;
} ArrayOfSomething;
MSReserved | Reserved for the Microsoft VM. |
length | The length of the array. Array lengths are measured in the unit of the array, not in bytes. |