summaryrefslogtreecommitdiffstats
path: root/src/H5VLnative_private.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/H5VLnative_private.h')
-rw-r--r--src/H5VLnative_private.h13
1 files changed, 5 insertions, 8 deletions
diff --git a/src/H5VLnative_private.h b/src/H5VLnative_private.h
index 79a6e1c..559c8aa 100644
--- a/src/H5VLnative_private.h
+++ b/src/H5VLnative_private.h
@@ -11,27 +11,24 @@
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
/*
- * Purpose: The private header file for the native VOL driver.
+ * Purpose: The private header file for the native VOL connector.
*/
#ifndef _H5VLnative_private_H
#define _H5VLnative_private_H
-/* Include driver's public header */
+/* Include connector's public header */
#include "H5VLnative.h"
-/* Initializer function for native VOL driver */
-#define H5VL_NATIVE (H5VL_native_init())
+/* Initializer function for native VOL connector */
+#define H5VL_NATIVE (H5VL_native_init(H5P_DEFAULT))
#ifdef __cplusplus
extern "C" {
#endif
-H5_DLL hid_t H5VL_native_get_driver_id(void);
-H5_DLL hid_t H5VL_native_init(void);
-H5_DLL hid_t H5VL_native_register(H5I_type_t type, const void *obj, hbool_t app_ref);
-H5_DLL herr_t H5VL_native_unregister(hid_t obj_id);
+H5_DLL hid_t H5VL_native_init(hid_t vipl_id);
#ifdef __cplusplus
}