/usr/include/hdf/hdf2netcdf.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 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 | /* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
* 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: hdf2netcdf.h 4933 2007-09-08 03:33:59Z bmribler $ */
#include "h4config.h"
/* If we disable the HDF version of the netCDF API (ncxxx interface)
(--disable-netcdf configure flag; the old way was to use -DHAVE_NETCDF compilation flag)
) we need to rename all the relevant function names
In this version we exclude renaming the netCDF fortran API so
the MFHDF side must be compilied without fortran support. */
#ifndef H4_HAVE_NETCDF
#define HNAME(x) sd_##x /* pre-append 'sd_' to all netCDF fcn names */
#else /* !H4_HAVE_NETCDF i.e NOT USING HDF NETCDF */
#define HNAME(x) x
#endif /* H4_HAVE_NETCDF i.e. USING HDF NETCDF */
/* If using the real netCDF library and API (use --disable-netcdf configure flag))
need to mangle the HDF versions of netCDF API function names
to not conflict w/ oriinal netCDF ones */
#ifndef H4_HAVE_NETCDF
#define ncerr HNAME(ncerr)
#define ncopts HNAME(ncopts)
#define nccreate HNAME(nccreate)
#define ncopen HNAME(ncopen)
#define ncredef HNAME(ncredef)
#define ncendef HNAME(ncendef)
#define ncclose HNAME(ncclose)
#define ncinquire HNAME(ncinquire)
#define ncsync HNAME(ncsync)
#define ncabort HNAME(ncabort)
#define ncdimdef HNAME(ncdimdef)
#define ncdimid HNAME(ncdimid)
#define ncdiminq HNAME(ncdiminq)
#define ncdimrename HNAME(ncdimrename)
#define ncvardef HNAME(ncvardef)
#define ncvarid HNAME(ncvarid)
#define ncvarinq HNAME(ncvarinq)
#define ncvarput1 HNAME(ncvarput1)
#define ncvarget1 HNAME(ncvarget1)
#define ncvarput HNAME(ncvarput)
#define ncvarget HNAME(ncvarget)
#define ncvarputs HNAME(ncvarputs)
#define ncvargets HNAME(ncvargets)
#define ncvarputg HNAME(ncvarputg)
#define ncvargetg HNAME(ncvargetg)
#define ncvarrename HNAME(ncvarrename)
#define ncattput HNAME(ncattput)
#define ncattinq HNAME(ncattinq)
#define ncattget HNAME(ncattget)
#define ncattcopy HNAME(ncattcopy)
#define ncattname HNAME(ncattname)
#define ncattrename HNAME(ncattrename)
#define ncattdel HNAME(ncattdel)
#define nctypelen HNAME(nctypelen)
#define ncsetfill HNAME(ncsetfill)
#define ncrecinq HNAME(ncrecinq)
#define ncrecget HNAME(ncrecget)
#define ncrecput HNAME(ncrecput)
#define ncnobuf HNAME(ncnobuf) /* no prototype for this one */
#endif /* !H4_HAVE_NETCDF i.e NOT USING HDF version of netCDF API */
|