summaryrefslogtreecommitdiffstats
path: root/src/H5VLpassthru.c
diff options
context:
space:
mode:
authorDana Robinson <derobins@hdfgroup.org>2019-05-24 00:56:27 (GMT)
committerDana Robinson <derobins@hdfgroup.org>2019-05-24 09:22:08 (GMT)
commitd5a8b2a80cd1e5aaa62a523e03a5936260a56f60 (patch)
tree7b3076c1cf79633dc0d67cc37b4aa5994ebb0c2b /src/H5VLpassthru.c
parente1879a23ae414e5256bcc0170f40784cd698af89 (diff)
downloadhdf5-d5a8b2a80cd1e5aaa62a523e03a5936260a56f60.zip
hdf5-d5a8b2a80cd1e5aaa62a523e03a5936260a56f60.tar.gz
hdf5-d5a8b2a80cd1e5aaa62a523e03a5936260a56f60.tar.bz2
Split VOL connector routines into separate headers:
* H5VLconnector.h for terminal connector things * H5VLconnector_passthru.h for passthrough connector things Note that these headers are arranged such that they are included in hdf5.h so VOL connectors only need to include that. The separation into multiple headers is mainly for readability.
Diffstat (limited to 'src/H5VLpassthru.c')
-rw-r--r--src/H5VLpassthru.c6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/H5VLpassthru.c b/src/H5VLpassthru.c
index ef92ddb..f0672b2 100644
--- a/src/H5VLpassthru.c
+++ b/src/H5VLpassthru.c
@@ -29,13 +29,17 @@
/* Header files needed */
-/* (Public HDF5 and standard C / POSIX only) */
+/* Do NOT include private HDF5 files here! */
#include <assert.h>
#include <stdarg.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
+
+/* Public HDF5 file */
#include "hdf5.h"
+
+/* This connector's header */
#include "H5VLpassthru.h"