Go to the documentation of this file. 1 #ifndef VISIBILITY_MACROS_H
2 #define VISIBILITY_MACROS_H
5 #if GCC_PREREQUISITE(4, 4, 0)
6 #define dso_export __attribute__((visibility("default")))
7 #define dso_hidden __attribute__((visibility("hidden")))
8 #define dso_internal __attribute__((visibility("hidden")))
9 #define dso_protected __attribute__((visibility("protected")))