/usr/include/hdf/mfhdfi.h is in libhdf4-alt-dev 4.2r4-12build1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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 | /* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
* Copyright by The HDF Group. *
* Copyright by the Board of Trustees of the University of Illinois. *
* All rights reserved. *
* *
* This file is part of HDF. The full HDF copyright notice, including *
* terms governing use, modification, and redistribution, is contained in *
* the files COPYING and Copyright.html. COPYING can be found at the root *
* of the source code distribution tree; Copyright.html can be found at *
* http://hdfgroup.org/products/hdf4/doc/Copyright.html. If you do not have *
* access to either file, you may request a copy from help@hdfgroup.org. *
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
/* $Id: mfhdfi.h 5009 2007-12-27 16:49:20Z bmribler $ */
#ifndef _MFHDFI_H
#define _MFHDFI_H
/* enumerated type used to specify whether a variable is an SDS, coordinate
variable, or its type is unknown because it was created before HDF4.2r2 */
typedef enum
{
IS_SDSVAR=0, /* variable is an actual SDS */
IS_CRDVAR=1, /* variable is a coordinate variable */
UNKNOWN=2 /* variable is created before HDF4.2r2, unknown type */
} hdf_vartype_t;
#endif /* _MFHDFI_H */
|