forked from binbrain/libeventmc
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcommon.h
More file actions
22 lines (18 loc) · 649 Bytes
/
Copy pathcommon.h
File metadata and controls
22 lines (18 loc) · 649 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
/* libeventmc - Memcached client bindings for libevent.
* Copyright (C) 2010 Admeld Inc, Milosz Tanski <mtanski@admeld.com>
*
* The source code for the libmeldmc library is licensed under the MIT license or
* at your option under the GPL version 2 license. The contents of the both
* licenses are contained within the libevemtmc distribution in COPYING.txt file.
*
*/
#ifndef __COMMON_H__
#define __COMMON_H__
#if __GNUC__ > 4
#define __DLL_PUBLIC __attribute__ ((visibility("default")))
#define __DLL_LOCAL __attribute__ ((visibility("hidden")))
#else
#define __DLL_PUBLIC
#define __DLL_LOCAL
#endif
#endif /* __COMMON_H__ */