Microsoft SDK for Java

ClassArrayOfArray

This structure is used to access Java two-dimensional arrays from native RNI code.

Syntax

typedef struct ClassArrayOfArray

{

    const int32_t MSReserved;

    const unsigned long length;

    JHandle * const (body[1]);

} ClassArrayOfArray;

Parameters

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

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