/usr/include/hdf/H4api_adpt.h is in libhdf4-alt-dev 4.2.12-3.
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 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 | /* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
* 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: hdfi.h 5435 2010-08-11 17:31:24Z byrn $ */
#ifndef H4API_ADPT_H
#define H4API_ADPT_H
#include "h4config.h"
/**
* Provide the macros to adapt the HDF public functions to
* dll entry points.
* In addition it provides error lines if the configuration is incorrect.
**/
/* This will only be defined if HDF4 was built with CMake */
#if defined(H4_BUILT_AS_DYNAMIC_LIB)
#if defined(xdr_shared_EXPORTS)
#if defined (_MSC_VER) || defined(__MINGW32__) /* MSVC Compiler Case */
#define XDRLIBAPI extern __declspec(dllexport)
#elif (__GNUC__ >= 4) /* GCC 4.x has support for visibility options */
#define XDRLIBAPI extern __attribute__ ((visibility("default")))
#endif
#endif /* xdr_shared_EXPORTS */
#if defined(hdf_shared_EXPORTS)
#if defined (_MSC_VER) || defined(__MINGW32__) /* MSVC Compiler Case */
#define HDFERRPUBLIC __declspec(dllimport)
#define HDFPUBLIC __declspec(dllexport)
#define HDFLIBAPI extern __declspec(dllexport)
#define HDFFCLIBAPI extern __declspec(dllimport)
#elif (__GNUC__ >= 4) /* GCC 4.x has support for visibility options */
#define HDFERRPUBLIC extern __attribute__ ((visibility("default")))
#define HDFPUBLIC __attribute__ ((visibility("default")))
#define HDFLIBAPI extern __attribute__ ((visibility("default")))
#define HDFFCLIBAPI extern __attribute__ ((visibility("default")))
#endif
#endif /* hdf_shared_EXPORTS */
#if defined(hdf_fcstub_shared_EXPORTS)
#if defined (_MSC_VER) || defined(__MINGW32__) /* MSVC Compiler Case */
#define HDFPUBLIC __declspec(dllexport)
#define HDFLIBAPI extern __declspec(dllimport)
#define HDFFCLIBAPI extern __declspec(dllexport)
#elif (__GNUC__ >= 4) /* GCC 4.x has support for visibility options */
#define HDFPUBLIC __attribute__ ((visibility("default")))
#define HDFLIBAPI extern __attribute__ ((visibility("default")))
#define HDFFCLIBAPI extern __attribute__ ((visibility("default")))
#endif
#endif /* hdf_fcstub_shared_EXPORTS */
#if defined(mfhdf_shared_EXPORTS)
#if defined (_MSC_VER) || defined(__MINGW32__) /* MSVC Compiler Case */
#define HDFERRPUBLIC extern __declspec(dllimport)
#define HDFPUBLIC __declspec(dllimport)
#define HDFLIBAPI extern __declspec(dllexport)
#define HDFFCLIBAPI extern __declspec(dllimport)
#elif (__GNUC__ >= 4) /* GCC 4.x has support for visibility options */
#define HDFERRPUBLIC extern __attribute__ ((visibility("default")))
#define HDFPUBLIC __attribute__ ((visibility("default")))
#define HDFLIBAPI extern __attribute__ ((visibility("default")))
#define HDFFCLIBAPI extern __attribute__ ((visibility("default")))
#endif
#endif /* mfhdf_shared_EXPORTS */
#if defined(mfhdf_fcstub_shared_EXPORTS)
#if defined (_MSC_VER) || defined(__MINGW32__) /* MSVC Compiler Case */
#define HDFPUBLIC __declspec(dllimport)
#define HDFLIBAPI extern __declspec(dllimport)
#define HDFFCLIBAPI extern __declspec(dllexport)
#elif (__GNUC__ >= 4) /* GCC 4.x has support for visibility options */
#define HDFPUBLIC __attribute__ ((visibility("default")))
#define HDFLIBAPI extern __attribute__ ((visibility("default")))
#define HDFFCLIBAPI extern __attribute__ ((visibility("default")))
#endif
#endif /* mfhdf_shared_fcstub_EXPORTS */
#if defined(hdf_test_fcstub_shared_EXPORTS)
#if defined (_MSC_VER) || defined(__MINGW32__) /* MSVC Compiler Case */
#define HDFFCLIBAPI extern __declspec(dllexport)
#elif (__GNUC__ >= 4) /* GCC 4.x has support for visibility options */
#define HDFFCLIBAPI extern __attribute__ ((visibility("default")))
#endif
#endif/* hdf_test_fcstub_shared_EXPORTS */
#if defined(mfhdf_hdiff_shared_EXPORTS)
#if defined (_MSC_VER) || defined(__MINGW32__) /* MSVC Compiler Case */
#define HDFPUBLIC __declspec(dllimport)
#define HDFLIBAPI extern __declspec(dllimport)
#define HDFTOOLSAPI extern __declspec(dllexport)
#elif (__GNUC__ >= 4) /* GCC 4.x has support for visibility options */
#define HDFPUBLIC __attribute__ ((visibility("default")))
#define HDFLIBAPI extern __attribute__ ((visibility("default")))
#define HDFTOOLSAPI extern __attribute__ ((visibility("default")))
#endif
#endif /* mfhdf_hdiff_shared_EXPORTS */
#if defined(mfhdf_hrepack_shared_EXPORTS)
#if defined (_MSC_VER) || defined(__MINGW32__) /* MSVC Compiler Case */
#define HDFPUBLIC __declspec(dllimport)
#define HDFLIBAPI extern __declspec(dllimport)
#define HDFTOOLSAPI extern __declspec(dllexport)
#elif (__GNUC__ >= 4) /* GCC 4.x has support for visibility options */
#define HDFPUBLIC __attribute__ ((visibility("default")))
#define HDFLIBAPI extern __attribute__ ((visibility("default")))
#define HDFTOOLSAPI extern __attribute__ ((visibility("default")))
#endif
#endif /* mfhdf_hrepack_shared_EXPORTS */
#if !defined(XDRLIBAPI)
#if defined (_MSC_VER) || defined(__MINGW32__) /* MSVC Compiler Case */
#define XDRLIBAPI extern __declspec(dllimport)
#elif (__GNUC__ >= 4) /* GCC 4.x has support for visibility options */
#define XDRLIBAPI extern __attribute__ ((visibility("default")))
#endif
#endif
#if !defined(HDFERRPUBLIC)
#if defined (_MSC_VER) || defined(__MINGW32__) /* MSVC Compiler Case */
#define HDFERRPUBLIC extern __declspec(dllimport)
#elif (__GNUC__ >= 4) /* GCC 4.x has support for visibility options */
#define HDFERRPUBLIC extern __attribute__ ((visibility("default")))
#endif
#endif
#if !defined(HDFPUBLIC)
#if defined (_MSC_VER) || defined(__MINGW32__) /* MSVC Compiler Case */
#define HDFPUBLIC __declspec(dllimport)
#elif (__GNUC__ >= 4) /* GCC 4.x has support for visibility options */
#define HDFPUBLIC __attribute__ ((visibility("default")))
#endif
#endif
#if !defined(HDFLIBAPI)
#if defined (_MSC_VER) || defined(__MINGW32__) /* MSVC Compiler Case */
#define HDFLIBAPI extern __declspec(dllimport)
#elif (__GNUC__ >= 4) /* GCC 4.x has support for visibility options */
#define HDFLIBAPI extern __attribute__ ((visibility("default")))
#endif
#endif
#if !defined(HDFFCLIBAPI)
#if defined (_MSC_VER) || defined(__MINGW32__) /* MSVC Compiler Case */
#define HDFFCLIBAPI extern __declspec(dllimport)
#elif (__GNUC__ >= 4) /* GCC 4.x has support for visibility options */
#define HDFFCLIBAPI extern __attribute__ ((visibility("default")))
#endif
#endif
#if !defined(HDFTOOLSAPI)
#if defined (_MSC_VER) || defined(__MINGW32__) /* MSVC Compiler Case */
#define HDFTOOLSAPI extern __declspec(dllimport)
#elif (__GNUC__ >= 4) /* GCC 4.x has support for visibility options */
#define HDFTOOLSAPI extern __attribute__ ((visibility("default")))
#endif
#endif
#else
# define XDRLIBAPI extern
# define HDFERRPUBLIC extern
# define HDFPUBLIC
# define HDFLIBAPI extern
# define HDFFCLIBAPI extern
# define HDFTOOLSAPI extern
#endif /*H4_BUILT_AS_DYNAMIC_LIB */
#endif /* H4API_ADPT_H */
|