Microsoft SDK for Java

ClassArrayOfChar

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

Syntax

typedef struct ClassArrayOfChar

{

    const int32_t MSReserved;

    const unsigned long length;

    unsigned short body[1];

} ClassArrayOfChar;

Parameters

MSReserved Reserved for the Microsoft Virtual Machine.
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).

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