repos
/
qt.core
/ annotate_shade
summary
|
shortlog
|
log
|
tree
|
commit
|
commitdiff
|
headdiff
|
annotate
|
headblob
|
headfilediff
|
filehistory
normal
|
plain
|
shade
|
zebra
GCC visibility support for C wrapper symbols
Annotate for file /src/lib/cl_smoke_qt.h
2009-05-11 tobias
1
#ifndef CL_SMOKE_QT_H
12:07:17 '
2
#define CL_SMOKE_QT_H
'
3
'
4
#if defined _WIN32 || defined __CYGWIN__
'
5
#define CL_SMOKE_QT_EXPORT __declspec(dllexport)
'
6
#else
'
7
#if __GNUC__ >= 4
'
8
#define CL_SMOKE_QT_EXPORT __attribute__((visibility("default")))
'
9
#else
'
10
#define CL_SMOKE_QT_EXPORT
'
11
#endif
'
12
#endif
'
13
'
14
#endif // CL_SMOKE_QT_H