< prev index next >
src/java.base/share/classes/java/nicl/metadata/NativeType.java
Print this page
*** 27,38 ****
@Retention(RUNTIME)
public @interface NativeType {
public static final String NO_NAME = ""; // No symbol name specified
! String layout();
String ctype();
String name() default NO_NAME;
-
- long size();
- boolean isRecordType() default false;
}
--- 27,35 ----
@Retention(RUNTIME)
public @interface NativeType {
public static final String NO_NAME = ""; // No symbol name specified
! String layout() default "";
String ctype();
String name() default NO_NAME;
}
< prev index next >