mirror of
https://github.com/Unidata/netcdf-c.git
synced 2024-11-21 03:13:42 +08:00
13 lines
345 B
C
13 lines
345 B
C
/* This is part of the netCDF package.
|
|
Copyright 2011 University Corporation for Atmospheric Research/Unidata
|
|
See COPYRIGHT file for conditions of use.
|
|
|
|
Includes for some HDF5 stuff needed by tests.
|
|
*/
|
|
|
|
typedef struct hdf5_objid
|
|
{
|
|
unsigned long fileno[2]; /* file number */
|
|
haddr_t objno[2]; /* object number */
|
|
} HDF5_OBJID_T;
|