/usr/include/odil/odil.h is in libodil-dev 0.8.0-4build1.
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 | #pragma once
#ifdef WIN32
# define EXPORT_DYNAMIC_LIBRARY __declspec(dllexport)
# define IMPORT_DYNAMIC_LIBRARY __declspec(dllimport)
// disable warning: 'identifier': class 'type' needs to have dll-interface to be
// used by clients of class 'type2'
// disable warning: non - DLL-interface classkey 'identifier' used as base for
// DLL-interface classkey 'identifier'
#pragma warning( disable : 4251 4275 )
#else // WIN32
# define EXPORT_DYNAMIC_LIBRARY
# define IMPORT_DYNAMIC_LIBRARY
#endif // WIN32
#ifdef BUILDING_ODIL
# define ODIL_API EXPORT_DYNAMIC_LIBRARY
#else // BUILDING_ODIL
# define ODIL_API IMPORT_DYNAMIC_LIBRARY
#endif // BUILDING_ODIL
|