/usr/include/vxl/contrib/btol/dll.h is in libvxl1-dev 1.17.0.dfsg2-4.
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 | // This is brl/bbas/btol/dll.h
#ifndef btol_dll_h_
#define btol_dll_h_
#include <vcl_compiler.h>
#define BTOL_DLL_DATA
#if defined(VCL_WIN32) && !defined(BUILDING_BTOL_DLL)
// if win32 and not building the DLL then you need a dllimport
// Only if you are building a DLL linked application.
# ifdef BUILD_DLL
# undef BTOL_DLL_DATA
# define BTOL_DLL_DATA _declspec(dllimport)
# endif // BUILD_DLL
#endif // VCL_WIN32 and !Building_*_dll
#endif // btol_dll_h_
|