summaryrefslogtreecommitdiffstats
path: root/src/H5VLpublic.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/H5VLpublic.h')
-rw-r--r--src/H5VLpublic.h7
1 files changed, 4 insertions, 3 deletions
diff --git a/src/H5VLpublic.h b/src/H5VLpublic.h
index 2428dd3..fa23ce9 100644
--- a/src/H5VLpublic.h
+++ b/src/H5VLpublic.h
@@ -308,10 +308,10 @@ typedef struct H5VL_async_class_t {
herr_t (*wait) (void **, H5_status_t *);
} H5VL_async_class_t;
-/* enum value to identify the class of a VOL plugin (mostly for comparison purposes */
+/* enum value to identify the class of a VOL plugin (mostly for comparison purposes) */
typedef enum H5VL_class_value_t {
- NATIVE = 0,
- DUMMY = 1
+ NATIVE = 0, /* This should be first */
+ MAX_VOL_LIB_VALUE = 128 /* This should be last */
} H5VL_class_value_t;
/* Class information for each VOL driver */
@@ -423,6 +423,7 @@ H5_DLL herr_t H5VLunregister(hid_t plugin_id);
H5_DLL htri_t H5VLis_registered(hid_t id);
H5_DLL ssize_t H5VLget_plugin_name(hid_t id, char *name/*out*/, size_t size);
H5_DLL hid_t H5VLobject_register(void *obj, H5I_type_t obj_type, const H5VL_class_t *cls);
+H5_DLL herr_t H5VLget_object(hid_t obj_id, void **obj, H5VL_t **vol_plugin);
#ifdef __cplusplus
}