Microsoft SDK for Java

ClassArrayOfString

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

Syntax

typedef struct ClassArrayOfString

{

    const int32_t MSReserved;

    const unsigned long length;

    HString  * const (body[1]);

} ClassArrayOfString;

Parameters

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

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