Microsoft SDK for Java

isStruct

The isStruct method of the DllLib class contains the following signatures:

isStruct(Class structCls)
isStruct(Field structField)

isStruct(Class structCls)

Determines whether a class represents a native structure.

Syntax

public static boolean isStruct(Class structCls);

Return Value

Returns true if the class represents a native structure; otherwise, returns false.

Parameters

structCls The class to examine.

isStruct(Field structField)

Determines whether a field represents a field in a native structure.

Syntax

public native static boolean isStruct(Field structField);

Return Value

Returns true if the field represents a field in a native structure; otherwise, returns false.

Parameters

structField The field to examine.

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