OB.DAAC Logo
NASA Logo
Ocean Color Science Software

ocssw V2022
hio.h
Go to the documentation of this file.
1 /*******************************************************************
2 
3  hio.h
4 
5  purpose: include file for the use of the hdf I/O routine aids
6 
7  Parameters:
8  Type Name I/O Description
9  ---- ---- --- -----------
10 
11  Modification history:
12  Programmer Date Description of change
13  ---------- ---- ---------------------
14  W. Robinson, SAIC 30-Sep-2005 rom l1io.h
15 
16  *******************************************************************/
17 
18 #include <stdint.h>
19 
20 /*
21  * the hio_struct structure has file ids...
22  */
23 typedef struct hio_struct_d {
24  int32_t fid;
25  int32_t sdfid;
26 } hio_struct;
27 
28 /*
29  * prototypes
30  */
31 int32_t hio_open(char *, int32_t, hio_struct*);
32 //int32_t hio_w_sds(hio_struct, int, int32_t *, int32_t, char *, void *);
33 int32_t hio_close(hio_struct);
34 int32_t hio_r_sds(hio_struct, char *, int32_t, void *);
35 //int32_t hio_r_sds_sl(hio_struct, char *, int32_t, int32_t *, int32_t *, void *);
36 //int32_t hio_r_sds_sls(hio_struct, char *, int32_t, int32_t *, int32_t *, int32_t *,
37 // void *);
38 //int32_t hio_rg_attr(hio_struct, char *, int32_t, int32_t, void *);
int32 fid
Definition: hio.h:43
int32 hio_close(hio_struct)
Definition: hio_close.c:3
int32 sdfid
Definition: hio.h:44
int32 hio_open(char *, int32, hio_struct *)
int32 hio_r_sds(hio_struct, char *, int32, void *)
Definition: hio_r_sds.c:4