diff options
author | Raymond Lu <songyulu@hdfgroup.org> | 2002-11-06 21:08:45 (GMT) |
---|---|---|
committer | Raymond Lu <songyulu@hdfgroup.org> | 2002-11-06 21:08:45 (GMT) |
commit | a9dea215ed696c1523fec79b4175b571600dca77 (patch) | |
tree | 0f004dc441cf2b95ecc1312a3bad61c0a556b768 /src/H5Tpkg.h | |
parent | 28874d54c4a7ebb953d7a92814090eb97b306251 (diff) | |
download | hdf5-a9dea215ed696c1523fec79b4175b571600dca77.zip hdf5-a9dea215ed696c1523fec79b4175b571600dca77.tar.gz hdf5-a9dea215ed696c1523fec79b4175b571600dca77.tar.bz2 |
[svn-r6060]
Purpose:
Add new functions
Description:
add H5Tget_native_type and H5Tis_variable_str.
Platforms tested:
arabica, eirene, modi4
Misc. update:
MANIFEST and release_docs/RELEASE updated.
Diffstat (limited to 'src/H5Tpkg.h')
-rw-r--r-- | src/H5Tpkg.h | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/src/H5Tpkg.h b/src/H5Tpkg.h index 8356f78..0adc4e9 100644 --- a/src/H5Tpkg.h +++ b/src/H5Tpkg.h @@ -175,6 +175,22 @@ H5_DLLVAR H5T_overflow_t H5T_overflow_g; * Alignment information for native types. A value of N indicates that the * data must be aligned on an address ADDR such that 0 == ADDR mod N. When * N=1 no alignment is required; N=0 implies that alignment constraints were + * not calculated. These alignment info is only for H5Tget_native_type. + * These values are used for structure alignment. + */ +H5_DLLVAR size_t H5T_NATIVE_SCHAR_COMP_ALIGN_g; +H5_DLLVAR size_t H5T_NATIVE_SHORT_COMP_ALIGN_g; +H5_DLLVAR size_t H5T_NATIVE_INT_COMP_ALIGN_g; +H5_DLLVAR size_t H5T_NATIVE_LONG_COMP_ALIGN_g; +H5_DLLVAR size_t H5T_NATIVE_LLONG_COMP_ALIGN_g; +H5_DLLVAR size_t H5T_NATIVE_FLOAT_COMP_ALIGN_g; +H5_DLLVAR size_t H5T_NATIVE_DOUBLE_COMP_ALIGN_g; +H5_DLLVAR size_t H5T_NATIVE_LDOUBLE_COMP_ALIGN_g; + +/* + * Alignment information for native types. A value of N indicates that the + * data must be aligned on an address ADDR such that 0 == ADDR mod N. When + * N=1 no alignment is required; N=0 implies that alignment constraints were * not calculated. */ H5_DLLVAR size_t H5T_NATIVE_SCHAR_ALIGN_g; |