Microsoft SDK for Java

ClassArrayOfDouble

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

Syntax

typedef struct ClassArrayOfDouble

{

    const int32_t MSReserved;

    const unsigned long length;

    double body[1];

} ClassArrayOfDouble;

Parameters

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

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