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