summaryrefslogtreecommitdiffstats
path: root/fortran/src/H5Tf.c
diff options
context:
space:
mode:
authorElena Pourmal <epourmal@hdfgroup.org>2005-04-06 22:53:03 (GMT)
committerElena Pourmal <epourmal@hdfgroup.org>2005-04-06 22:53:03 (GMT)
commitb72f2c328bfdce27baf0526603a3dcb182b9b24e (patch)
treebfa7e93fd090001d9f9cea18add723abfef96b88 /fortran/src/H5Tf.c
parent686e4f35010249e0489b49431836e4d34cfd24bc (diff)
downloadhdf5-b72f2c328bfdce27baf0526603a3dcb182b9b24e.zip
hdf5-b72f2c328bfdce27baf0526603a3dcb182b9b24e.tar.gz
hdf5-b72f2c328bfdce27baf0526603a3dcb182b9b24e.tar.bz2
[svn-r10561] Purpose: Maintenance
Description: Added missing h5get_member_class_f function Solution: Platforms tested: heping; it is a simple change. I will watch daily tests and take care of failures. Misc. update:
Diffstat (limited to 'fortran/src/H5Tf.c')
-rw-r--r--fortran/src/H5Tf.c30
1 files changed, 30 insertions, 0 deletions
diff --git a/fortran/src/H5Tf.c b/fortran/src/H5Tf.c
index cc4b279..8fbcbef 100644
--- a/fortran/src/H5Tf.c
+++ b/fortran/src/H5Tf.c
@@ -1633,3 +1633,33 @@ nh5tis_variable_str_c ( hid_t_f *type_id , int_f *flag )
if ( status < 0 ) ret_value = -1;
return ret_value;
}
+/*----------------------------------------------------------------------------
+ * Name: h5tget_member_class_c
+ * Purpose: Call H5Tget_member_class to detrmine ithe class of the compound
+ * datatype member
+ * Inputs: type_id - identifier of the dataspace
+ * member_no - member's index
+ * Outputs: class - member's class
+ * and negative on failure.
+ * Returns: 0 on success, -1 on failure
+ * Programmer: Elena Pourmal
+ * Wednesday, April 6, 2005
+ * Modifications:
+ *---------------------------------------------------------------------------*/
+
+int_f
+nh5tget_member_class_c ( hid_t_f *type_id , int_f *member_no, int_f *class )
+{
+ int ret_value = 0;
+ hid_t c_type_id;
+ unsigned c_member_no;
+ H5T_class_t c_class;
+
+ c_type_id = (hid_t)*type_id;
+ c_member_no = (unsigned)*member_no;
+ c_class = H5Tget_member_class(c_type_id, c_member_no);
+
+ if ( c_class == H5T_NO_CLASS ) ret_value = -1;
+ *class = (int_f)c_class;
+ return ret_value;
+}