This file is indexed.

/usr/include/choreonoid-1.1/cnoid/src/PoseSeqPlugin/exportdecl.h is in libcnoid-dev 1.1.0+dfsg-6.1+b4.

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
#ifdef CNOID_EXPORT
#undef CNOID_EXPORT
#endif

#if defined(WIN32) || defined(_WIN32) || defined(__WIN32__) || defined(__NT__)
# ifdef CnoidPoseSeqPlugin_EXPORTS
#  define CNOID_EXPORT __declspec(dllexport)
# else
#  define CNOID_EXPORT __declspec(dllimport)
# endif
#else
# define CNOID_EXPORT
#endif