summaryrefslogtreecommitdiffstats
path: root/src/H5Apublic.h
diff options
context:
space:
mode:
authorDana Robinson <derobins@hdfgroup.org>2018-12-18 21:34:34 (GMT)
committerDana Robinson <derobins@hdfgroup.org>2018-12-18 21:34:34 (GMT)
commitf60e8bb05e3203054e27bf41d0ebc657537736ed (patch)
treea4cf82af6a2dc2c77858c4b49b0838ed4212a5b2 /src/H5Apublic.h
parentb486fd10a44df052c8c2f030ab8c2c25dfa0f8a2 (diff)
downloadhdf5-f60e8bb05e3203054e27bf41d0ebc657537736ed.zip
hdf5-f60e8bb05e3203054e27bf41d0ebc657537736ed.tar.gz
hdf5-f60e8bb05e3203054e27bf41d0ebc657537736ed.tar.bz2
Moved the optional enums to H5VLnative.h and converted to an int
typedef and a set of #defines.
Diffstat (limited to 'src/H5Apublic.h')
-rw-r--r--src/H5Apublic.h34
1 files changed, 13 insertions, 21 deletions
diff --git a/src/H5Apublic.h b/src/H5Apublic.h
index 726f51b..7162f6e 100644
--- a/src/H5Apublic.h
+++ b/src/H5Apublic.h
@@ -22,10 +22,6 @@
#include "H5Opublic.h" /* Object Headers */
#include "H5Tpublic.h" /* Datatypes */
-#ifdef __cplusplus
-extern "C" {
-#endif
-
/* Information struct for attribute (for H5Aget_info/H5Aget_info_by_idx) */
typedef struct {
hbool_t corder_valid; /* Indicate if creation order is valid */
@@ -38,23 +34,19 @@ typedef struct {
typedef herr_t (*H5A_operator2_t)(hid_t location_id/*in*/,
const char *attr_name/*in*/, const H5A_info_t *ainfo/*in*/, void *op_data/*in,out*/);
-/* Enumeration for native VOL connector attribute optional VOL operations */
-typedef enum H5VL_native_attr_optional_t {
- H5VL_NATIVE_ATTR_ITERATE_OLD /* H5Aiterate (deprecated routine) */
- /* (This enum value should have an
- * "#ifndefH5_NO_DEPRECATED_SYMBOLS"
- * around it, but the compiler
- * complains about an empty enum
- * when deprecated symbols are
- * disabled currently. When
- * another enum value is added,
- * please put the #ifdef around
- * this symbol. QAK - 2018/12/06
- */
-} H5VL_native_attr_optional_t;
-
-
-/* Public function prototypes */
+
+/********************/
+/* Public Variables */
+/********************/
+
+
+/*********************/
+/* Public Prototypes */
+/*********************/
+#ifdef __cplusplus
+extern "C" {
+#endif
+
H5_DLL hid_t H5Acreate2(hid_t loc_id, const char *attr_name, hid_t type_id,
hid_t space_id, hid_t acpl_id, hid_t aapl_id);
H5_DLL hid_t H5Acreate_by_name(hid_t loc_id, const char *obj_name, const char *attr_name,