The isStruct method of the DllLib class contains the following signatures:
isStruct(Class structCls)
isStruct(Field structField)
Determines whether a class represents a native structure.
public static boolean isStruct(Class structCls);
Returns true if the class represents a native structure; otherwise, returns false.
structCls | The class to examine. |
Determines whether a field represents a field in a native structure.
public native static boolean isStruct(Field structField);
Returns true if the field represents a field in a native structure; otherwise, returns false.
structField | The field to examine. |