Microsoft SDK for Java

ClassArrayOfByte

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

Syntax

typedef struct ClassArrayOfByte

{

    const int32_t MSReserved;

    const unsigned long length;

    char body[1];

} ClassArrayOfByte;

Parameters

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

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