summaryrefslogtreecommitdiffstats
path: root/src/H5Tpublic.h
diff options
context:
space:
mode:
authorRaymond Lu <songyulu@hdfgroup.org>2010-08-23 21:37:10 (GMT)
committerRaymond Lu <songyulu@hdfgroup.org>2010-08-23 21:37:10 (GMT)
commit9d68049cc6a6062a95a57d7f2b01ae21ef6ac1eb (patch)
treecbc811f99b39fcf11327484407e4e77d65c50f5f /src/H5Tpublic.h
parentbec868b005e3501b99439e7d029061424cf1b76c (diff)
downloadhdf5-9d68049cc6a6062a95a57d7f2b01ae21ef6ac1eb.zip
hdf5-9d68049cc6a6062a95a57d7f2b01ae21ef6ac1eb.tar.gz
hdf5-9d68049cc6a6062a95a57d7f2b01ae21ef6ac1eb.tar.bz2
[svn-r19279] Bug 1934 - I added support of all data types for H5Tget_order. I added a new byte order
H5T_ORDER_MIXED specifically for compound types and its derived types. They report mixed orders if they have members of different orders. Tested on heiwa, jam, and amani.
Diffstat (limited to 'src/H5Tpublic.h')
-rw-r--r--src/H5Tpublic.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/H5Tpublic.h b/src/H5Tpublic.h
index 330a731..d646ef1 100644
--- a/src/H5Tpublic.h
+++ b/src/H5Tpublic.h
@@ -50,7 +50,8 @@ typedef enum H5T_order_t {
H5T_ORDER_LE = 0, /*little endian */
H5T_ORDER_BE = 1, /*bit endian */
H5T_ORDER_VAX = 2, /*VAX mixed endian */
- H5T_ORDER_NONE = 3 /*no particular order (strings, bits,..) */
+ H5T_ORDER_MIXED = 3, /*Compound type with mixed member orders */
+ H5T_ORDER_NONE = 4 /*no particular order (strings, bits,..) */
/*H5T_ORDER_NONE must be last */
} H5T_order_t;