This file is indexed.

/usr/include/camitk-4.0/components/pmlcomponent/PMLComponentAPI.h is in libcamitk-dev 4.0.4-2.

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
#if defined(_WIN32) // MSVC and mingw

#ifdef COMPILE_PML_COMPONENT_API
#define PML_COMPONENT_API __declspec(dllexport)
#else
#define PML_COMPONENT_API __declspec(dllimport)
#endif // COMPILE_PML_COMPONENT_API

#else // for all other platforms PML_COMPONENT_API is defined to be "nothing"

#ifndef PML_COMPONENT_API
#define PML_COMPONENT_API
#endif // COMPILE_PML_COMPONENT_API

#endif // MSVC and mingw