summaryrefslogtreecommitdiffstats
path: root/src/H5FDstdio.h
diff options
context:
space:
mode:
authorQuincey Koziol <koziol@hdfgroup.org>1999-10-20 17:51:03 (GMT)
committerQuincey Koziol <koziol@hdfgroup.org>1999-10-20 17:51:03 (GMT)
commite0cbe0c5c8bed8dc382fe5fd2a131e484b2b93f2 (patch)
tree10d6d4d6cc937b308aaf74cf44be379c0dfd1492 /src/H5FDstdio.h
parentef31f648cf3b50ec6d09e8ff4d0f9d10de336091 (diff)
downloadhdf5-e0cbe0c5c8bed8dc382fe5fd2a131e484b2b93f2.zip
hdf5-e0cbe0c5c8bed8dc382fe5fd2a131e484b2b93f2.tar.gz
hdf5-e0cbe0c5c8bed8dc382fe5fd2a131e484b2b93f2.tar.bz2
[svn-r1785] Added stdio VFL driver, which uses the new public H5E calls.
Diffstat (limited to 'src/H5FDstdio.h')
-rw-r--r--src/H5FDstdio.h20
1 files changed, 20 insertions, 0 deletions
diff --git a/src/H5FDstdio.h b/src/H5FDstdio.h
new file mode 100644
index 0000000..7dac8f4
--- /dev/null
+++ b/src/H5FDstdio.h
@@ -0,0 +1,20 @@
+/*
+ * Copyright © 1999 NCSA
+ * All rights reserved.
+ *
+ * Programmer: Robb Matzke <matzke@llnl.gov>
+ * Monday, August 2, 1999
+ *
+ * Purpose: The public header file for the sec2 driver.
+ */
+#ifndef H5FDstdio_H
+#define H5FDstdio_H
+
+#include <H5Ipublic.h>
+
+#define H5FD_STDIO (H5FD_stdio_init())
+
+__DLL__ hid_t H5FD_stdio_init(void);
+__DLL__ herr_t H5Pset_fapl_stdio(hid_t fapl_id);
+
+#endif