- removed arguments from macros h5_error_internal() h5_error_not_implemented() - some coding style issues fixed
51 lines
685 B
C
51 lines
685 B
C
#ifndef __H5_READWRITE_H
|
|
#define __H5_READWRITE_H
|
|
|
|
h5_int64_t
|
|
h5_set_step (
|
|
h5_file_t * const f,
|
|
const h5_int64_t step /*!< [in] Time-step to set. */
|
|
);
|
|
|
|
h5_int64_t
|
|
h5_normalize_h5_type (
|
|
hid_t type
|
|
);
|
|
|
|
h5_int64_t
|
|
h5_get_dataset_type(
|
|
h5_file_t * const f,
|
|
hid_t group_id,
|
|
const char *dataset_name
|
|
);
|
|
|
|
h5_int64_t
|
|
h5_has_index (
|
|
h5_file_t * const f, /*!< [in] Handle to open file */
|
|
h5_int64_t step /*!< [in] Step number to query */
|
|
);
|
|
|
|
h5_err_t
|
|
h5_normalize_dataset_name (
|
|
const char *name,
|
|
char *name2
|
|
);
|
|
|
|
h5_err_t
|
|
h5_set_throttle (
|
|
h5_file_t *f,
|
|
int factor
|
|
);
|
|
|
|
h5_err_t
|
|
h5_start_throttle (
|
|
h5_file_t *f
|
|
);
|
|
|
|
h5_err_t
|
|
h5_end_throttle (
|
|
h5_file_t *f
|
|
);
|
|
|
|
#endif
|