Microsoft SDK for Java

ClassArrayOfObject

This structure is used to access Java arrays of objects from native RNI code.

Syntax

typedef struct ClassArrayOfObject

{

    const int32_t MSReserved;

    const unsigned long length;

    HObject * const body[1];

} ClassArrayOfObject;

Parameters

MSReserved Reserved for the Microsoft VM.
length The length of the array (in object references).
body A variable length array of HObject pointers (it is declared as one element because not all C compilers support [] declarations).

© 1999 Microsoft Corporation. All rights reserved. Terms of use.