varconf  1.0.3
Configuration library for the Worldforge system.
varconf_defs.h
1 
20 #ifndef VARCONF_VARCONF_DEFS_H
21 #define VARCONF_VARCONF_DEFS_H
22 
23 #ifndef VARCONF_API
24 #if defined _WIN32 || defined __CYGWIN__
25  #define VARCONF_API
26 #else
27  #if __GNUC__ >= 4
28  #define VARCONF_API __attribute__ ((visibility ("default")))
29  #else
30  #define VARCONF_API
31  #endif
32 #endif
33 #endif
34 
35 #endif /* VARCONF_VARCONF_DEFS_H */