- export h5tpriv_find_te2 via h5core/h5t_adjacencies.h

- method is called h5t_find_te2
This commit is contained in:
Christian Engwer
2010-12-10 08:40:08 +00:00
parent edcdd4ce0f
commit f5ace232e8
2 changed files with 18 additions and 1 deletions
+9 -1
View File
@@ -35,4 +35,12 @@ h5t_release_list_of_adjacencies (
return H5_SUCCESS;
}
h5_err_t
h5t_find_te2 (
h5_file_t* const f,
h5_loc_idx_t face_idx,
h5_loc_idx_t elem_idx,
h5_idlist_t** retval
) {
return h5tpriv_find_te2 (f,face_idx,elem_idx,retval);
}
+9
View File
@@ -14,4 +14,13 @@ h5t_release_list_of_adjacencies (
h5_file_t * const f,
h5_idlist_t **list
);
h5_err_t
h5t_find_te2 (
h5_file_t* const f,
h5_loc_idx_t face_idx,
h5_loc_idx_t elem_idx,
h5_idlist_t** retval
);
#endif