MySQL 5.6.14 Source Code Document
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
visibility.h
1 /* -*- Mode: C; tab-width: 4; c-basic-offset: 4; indent-tabs-mode: nil -*- */
2 #ifndef MEMCACHED_VISIBILITY_H
3 #define MEMCACHED_VISIBILITY_H 1
4 
5 #if (defined(__SUNPRO_C) && (__SUNPRO_C >= 0x550)) || (defined(__SUNPRO_CC) && (__SUNPRO_CC >= 0x550))
6 #define MEMCACHED_PUBLIC_API __global
7 #elif defined __GNUC__
8 #define MEMCACHED_PUBLIC_API __attribute__ ((visibility("default")))
9 #else
10 #define MEMCACHED_PUBLIC_API
11 #endif
12 
13 #endif /* MEMCACHED_VISIBILITY_H */