diff options
author | Allen Byrne <byrn@hdfgroup.org> | 2018-06-20 21:06:18 (GMT) |
---|---|---|
committer | Allen Byrne <byrn@hdfgroup.org> | 2018-06-20 21:06:18 (GMT) |
commit | 651b728a62bf2cda702270a9ccb78233051da638 (patch) | |
tree | 53e2975c9748e12603cbe6074e56ee625fecd350 /java/src/hdf | |
parent | 2ff00b1b937ebe36ac6ddf590c16a4c27fc0b053 (diff) | |
download | hdf5-651b728a62bf2cda702270a9ccb78233051da638.zip hdf5-651b728a62bf2cda702270a9ccb78233051da638.tar.gz hdf5-651b728a62bf2cda702270a9ccb78233051da638.tar.bz2 |
HDFVIEW compound vlen needed vlen_t size
Diffstat (limited to 'java/src/hdf')
-rw-r--r-- | java/src/hdf/hdf5lib/HDF5Constants.java | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/java/src/hdf/hdf5lib/HDF5Constants.java b/java/src/hdf/hdf5lib/HDF5Constants.java index 43109f2..7eddac0 100644 --- a/java/src/hdf/hdf5lib/HDF5Constants.java +++ b/java/src/hdf/hdf5lib/HDF5Constants.java @@ -623,6 +623,7 @@ public class HDF5Constants { public static final long H5T_UNIX_D64LE = H5T_UNIX_D64LE(); public static final long H5T_VARIABLE = H5T_VARIABLE(); public static final int H5T_VLEN = H5T_VLEN(); + public static final int H5T_VL_T = H5T_VL_T(); public static final int H5Z_CB_CONT = H5Z_CB_CONT(); public static final int H5Z_CB_ERROR = H5Z_CB_ERROR(); public static final int H5Z_CB_FAIL = H5Z_CB_FAIL(); @@ -1825,6 +1826,8 @@ public class HDF5Constants { private static native final int H5T_VLEN(); + private static native final int H5T_VL_T(); + private static native final int H5Z_CB_CONT(); private static native final int H5Z_CB_ERROR(); |