Files
src_old/src/include/h5core/h5_openclose.h
T
2011-05-24 15:30:03 +00:00

103 lines
1.2 KiB
C

#ifndef __H5_OPENCLOSE_H
#define __H5_OPENCLOSE_H
#ifdef __cplusplus
extern "C" {
#endif
h5_file_t *
h5_open_file (
const char *filename,
h5_int32_t flags,
MPI_Comm comm
);
h5_int64_t
h5_check_filehandle (
h5_file_t * const f
);
h5_int64_t
h5_close_file (
h5_file_t * const f
);
h5_int64_t
h5_set_stepname_fmt (
h5_file_t * const f,
const char *name,
int width
);
h5_err_t
h5_get_stepname_fmt (
h5_file_t * const f,
char *name,
int l_name,
int *width
);
h5_err_t
h5priv_close_step (
h5_file_t * const f
);
int
h5_get_num_procs (
h5_file_t* const f
);
hid_t
h5_get_hdf5_file(
h5_file_t* const f
);
h5_ssize_t
h5_get_num_steps (
h5_file_t* const f
);
h5_int64_t
h5_has_step (
h5_file_t * const f,
h5_int64_t step
);
h5_int64_t
h5_get_step (
h5_file_t * const f
);
h5_err_t
h5_start_traverse_steps (
h5_file_t * f /*!< file handle */
);
h5_err_t
h5_traverse_steps (
h5_file_t * f /*!< file handle */
);
char *
h5_strdupfor2c (
const char *s,
const ssize_t len
);
char *
h5_strc2for (
char * const str,
const ssize_t l_str
);
h5_file_t *
h5_filehandlefor2c (
const h5_int64_t *ptr
);
#ifdef __cplusplus
}
#endif
#endif