1 /* This is part of the netCDF package.
2    Copyright 2011 University Corporation for Atmospheric Research/Unidata
3    See COPYRIGHT file for conditions of use.
4 
5    Includes for some HDF5 stuff needed by tests.
6 */
7 
8 #ifndef _NCDIMSCALE_H_
9 #define _NCDIMSCALE_H_
10 
11 #include <hdf5.h>
12 
13 typedef struct hdf5_objid
14 {
15    unsigned long fileno[2]; /* file number */
16    haddr_t objno[2]; /* object number */
17 } HDF5_OBJID_T;
18 
19 #endif
20