Files
src_old/src/C/H5Fed.c
T
gsell 7e93a7ab2f - improved debugging
- abort error handler now terminates all processes in MPI_COMM_WORLD
- some formating issues fixed
- some minor (cosmetic) changes
2011-02-18 10:33:44 +00:00

54 lines
931 B
C

/*
Copyright 2007-2009
Paul Scherrer Institut, Villigen, Switzerland;
Benedikt Oswald;
Achim Gsell
All rights reserved.
Authors
Achim Gsell
Warning
This code is under development.
*/
#include "h5core/h5_core.h"
#include "H5Fed.h"
h5_err_t
H5FedOpenMesh (
h5_file_t* const f,
const h5_id_t mesh_id,
const h5_oid_t mesh_type_id
) {
H5_API_ENTER (h5_err_t);
H5_API_RETURN (h5t_open_mesh (f, mesh_id, mesh_type_id));
}
h5_err_t
H5FedCloseMesh (
h5_file_t* const f
) {
H5_API_ENTER (h5_err_t);
H5_API_RETURN (h5t_close_mesh (f));
}
h5_err_t
H5FedSetLevel (
h5_file_t* const f,
const h5t_lvl_idx_t level_id
) {
H5_API_ENTER (h5_err_t);
H5_API_RETURN (h5t_set_level (f, level_id));
}
h5_err_t
H5FedLinkMeshToStep (
h5_file_t* const f,
const h5_id_t mesh_id
) {
UNUSED_ARGUMENT (mesh_id);
H5_API_ENTER (h5_err_t);
H5_API_RETURN (h5_error_not_implemented (__FILE__, __func__, __LINE__));
}