From a805b54aac35aad1dcf31b80862ae0f46231c018 Mon Sep 17 00:00:00 2001 From: Achim Gsell Date: Mon, 18 Feb 2008 14:03:25 +0000 Subject: [PATCH] removed --- .gitattributes | 1 - src/H5PartPrivate.h | 115 -------------------------------------------- 2 files changed, 116 deletions(-) delete mode 100644 src/H5PartPrivate.h diff --git a/.gitattributes b/.gitattributes index 50e14fa..a9a89e1 100644 --- a/.gitattributes +++ b/.gitattributes @@ -30,7 +30,6 @@ src/H5Fed_statistics.c -text src/H5Fed_storeretrieve.c -text src/H5Part.c -text src/H5Part.h -text -src/H5PartPrivate.h -text src/Makefile.am -text src/bindings/C++/H5Fed.cc -text src/bindings/C++/H5Fed.hh -text diff --git a/src/H5PartPrivate.h b/src/H5PartPrivate.h deleted file mode 100644 index 970b9f1..0000000 --- a/src/H5PartPrivate.h +++ /dev/null @@ -1,115 +0,0 @@ -#ifndef __H5PARTPRIVATE_H -#define __H5PARTPRIVATE_H - -#define H5PART_GROUPNAME_STEP "Step" - -/*! - The functions declared here are not part of the API, but may be used - in extensions like H5Block. We name these functions "private". - - \note - Private function may change there interface even in stable versions. - Don't use them in applications! -*/ - -struct _iter_op_data { - int stop_idx; - int count; - int type; - char *name; - size_t len; - char *pattern; -}; - -h5part_int64_t -H5_set_step ( - h5_file *f, - const h5part_int64_t step - ); - -h5part_int64_t -H5_get_num_particles ( - h5_file *f - ); - -herr_t -H5_iteration_operator ( - hid_t group_id, - const char *member_name, - void *operator_data - ); - - - -#define SET_FNAME( fname ) H5_set_funcname( fname ); - -hid_t -H5_normalize_h5_type ( - hid_t type - ); - -h5part_int64_t -H5_read_attrib ( - hid_t id, - const char *attrib_name, - void *attrib_value - ); - -h5part_int64_t -H5_write_attrib ( - hid_t id, - const char *attrib_name, - const hid_t attrib_type, - const void *attrib_value, - const hsize_t attrib_nelem - ); - -h5part_int64_t -H5_get_attrib_info ( - hid_t id, - const h5part_int64_t attrib_idx, - char *attrib_name, - const h5part_int64_t len_attrib_name, - h5part_int64_t *attrib_type, - h5part_int64_t *attrib_nelem - ); - -h5part_int64_t -H5_get_num_objects ( - hid_t group_id, - const char *group_name, - const hid_t type - ); - -h5part_int64_t -H5_get_num_objects_matching_pattern ( - hid_t group_id, - const char *group_name, - const hid_t type, - char * const pattern - ); - -h5part_int64_t -_H5Part_get_object_name ( - hid_t group_id, - const char *group_name, - const hid_t type, - const h5part_int64_t idx, - char *obj_name, - const h5part_int64_t len_obj_name - ); - - -char * -_H5Part_strdupfor2c ( - const char *s, - const ssize_t len - ); - -char * -_H5Part_strc2for ( - char * const str, - const ssize_t l_str - ); - -#endif