Microsoft SDK for Java

ClassArrayOfLong

This structure is used to access Java arrays of long type primitives from native RNI code.

Syntax

typedef struct ClassArrayOfLong

{

    const int32_t MSReserved;

    const unsigned long length;

    __int64 body[1];

} ClassArrayOfLong;

Parameters

MSReserved Reserved for the Microsoft VM.
length The length of the array in long integers.
body A variable-length array of long integers. It is declared as one element because not all C compilers support [] declarations.

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