summaryrefslogtreecommitdiffstats
path: root/src/H5FDdpss.h
diff options
context:
space:
mode:
authorRaymond Lu <songyulu@hdfgroup.org>1999-12-21 22:17:55 (GMT)
committerRaymond Lu <songyulu@hdfgroup.org>1999-12-21 22:17:55 (GMT)
commit173c0b6fe54eef89988048c928b703544d8baf92 (patch)
treeb74e9cf7cb454ac925d4b71883c6b381b46aee86 /src/H5FDdpss.h
parentada76449ba652add37f72608c714943f9d4fdd9d (diff)
downloadhdf5-173c0b6fe54eef89988048c928b703544d8baf92.zip
hdf5-173c0b6fe54eef89988048c928b703544d8baf92.tar.gz
hdf5-173c0b6fe54eef89988048c928b703544d8baf92.tar.bz2
[svn-r1925] DPSS is checked in.
Diffstat (limited to 'src/H5FDdpss.h')
-rw-r--r--src/H5FDdpss.h32
1 files changed, 32 insertions, 0 deletions
diff --git a/src/H5FDdpss.h b/src/H5FDdpss.h
new file mode 100644
index 0000000..7ba8ca2
--- /dev/null
+++ b/src/H5FDdpss.h
@@ -0,0 +1,32 @@
+/*
+ * Copyright © 1999 NCSA
+ * All rights reserved.
+ *
+ * Programmer: Thomas Radke <tradke@aei-potsdam.mpg.de>
+ * Monday, October 11, 1999
+ *
+ * Purpose: The public header file for the DPSS driver.
+ */
+#ifndef H5FDdpss_H
+#define H5FDdpss_H
+
+#include <H5public.h> /* typedef for herr_t */
+#include <H5Ipublic.h> /* typedef for hid_t */
+
+#ifdef H5_HAVE_DPSS
+#define H5FD_DPSS (H5FD_dpss_init())
+#else
+#define H5FD_DPSS (-1)
+#endif
+
+/* Function prototypes */
+#ifdef H5_HAVE_DPSS
+
+hid_t H5FD_dpss_init(void);
+herr_t H5Pset_fapl_dpss (hid_t fapl_id);
+herr_t H5Pget_fapl_dpss (hid_t fapl_id);
+
+#endif
+
+#endif /* H5FDdpss_H */
+