#ifndef DTKVRSUPPORT_EXPORT_H #define DTKVRSUPPORT_EXPORT_H #ifdef DTKVRSUPPORT_STATIC_DEFINE # define DTKVRSUPPORT_EXPORT # define DTKVRSUPPORT_NO_EXPORT #else # ifndef DTKVRSUPPORT_EXPORT # ifdef dtkVrSupport_EXPORTS /* We are building this library */ # define DTKVRSUPPORT_EXPORT __attribute__((visibility("default"))) # else /* We are using this library */ # define DTKVRSUPPORT_EXPORT __attribute__((visibility("default"))) # endif # endif # ifndef DTKVRSUPPORT_NO_EXPORT # define DTKVRSUPPORT_NO_EXPORT __attribute__((visibility("hidden"))) # endif #endif #ifndef DTKVRSUPPORT_DEPRECATED # define DTKVRSUPPORT_DEPRECATED __attribute__ ((__deprecated__)) #endif #ifndef DTKVRSUPPORT_DEPRECATED_EXPORT # define DTKVRSUPPORT_DEPRECATED_EXPORT DTKVRSUPPORT_EXPORT DTKVRSUPPORT_DEPRECATED #endif #ifndef DTKVRSUPPORT_DEPRECATED_NO_EXPORT # define DTKVRSUPPORT_DEPRECATED_NO_EXPORT DTKVRSUPPORT_NO_EXPORT DTKVRSUPPORT_DEPRECATED #endif /* NOLINTNEXTLINE(readability-avoid-unconditional-preprocessor-if) */ #if 0 /* DEFINE_NO_DEPRECATED */ # ifndef DTKVRSUPPORT_NO_DEPRECATED # define DTKVRSUPPORT_NO_DEPRECATED # endif #endif #endif /* DTKVRSUPPORT_EXPORT_H */