blob: fa80a7b19f5fa561182b553a67f3ecadb9a5dc2e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
#ifndef _LIBKTORRENT_EXPORT_H
#define _LIBKTORRENT_EXPORT_H
#include <tdemacros.h>
#ifdef __TDE_HAVE_GCC_VISIBILITY
#define LIBKTORRENT_EXPORT TDE_EXPORT
#else
#define LIBKTORRENT_EXPORT
#endif
#endif
|