summaryrefslogtreecommitdiffstats
path: root/src/H5VLint.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/H5VLint.c')
-rw-r--r--src/H5VLint.c28
1 files changed, 2 insertions, 26 deletions
diff --git a/src/H5VLint.c b/src/H5VLint.c
index 142c762..24d4fd8 100644
--- a/src/H5VLint.c
+++ b/src/H5VLint.c
@@ -27,11 +27,9 @@
/* Module Setup */
/****************/
-#define H5VL_PACKAGE /*suppress error about including H5VLpkg */
-#define H5I_PACKAGE /*suppress error about including H5Ipkg */
+#define H5I_FRIEND /*suppress error about including H5Ipkg */
+#include "H5VLmodule.h" /* This source code file is part of the H5VL module */
-/* Interface initialization */
-#define H5_INTERFACE_INIT_FUNC H5VL_int_init_interface
/***********/
/* Headers */
@@ -88,28 +86,6 @@ H5FL_DEFINE(H5VL_t);
H5FL_DEFINE(H5VL_object_t);
-/*--------------------------------------------------------------------------
-NAME
- H5VL_int_init_interface -- Initialize interface-specific information
-USAGE
- herr_t H5VL_int_init_interface()
-
-RETURNS
- Non-negative on success/Negative on failure
-DESCRIPTION
- Initializes any interface-specific data or routines. (Just calls
- H5VL_init_iterface currently).
-
---------------------------------------------------------------------------*/
-static herr_t
-H5VL_int_init_interface(void)
-{
- FUNC_ENTER_NOAPI_NOINIT_NOERR
-
- FUNC_LEAVE_NOAPI(H5VL_init())
-} /* H5VL_int_init_interface() */
-
-
/*-------------------------------------------------------------------------
* Function: H5VL_register
*