summaryrefslogtreecommitdiffstats
path: root/src/H5FDdpss.h
blob: 969ff38d44bcd1fba87d897977099ea3d1a68b5b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
/*
 * 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_GRIDSTORAGE 
#define H5FD_DPSS              (H5FD_dpss_init())
#else
#define H5FD_DPSS              (-1)
#endif   

/* Function prototypes */
#ifdef H5_HAVE_GRIDSTORAGE

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 */