nds2-client - ClientUser  0.16.8
 All Classes Namespaces Functions Variables Typedefs Enumerations Enumerator Pages
nds_export.hh
1 /* -*- tab-width:8 c-basic-offset:4 indent-tabs-mode:nil -*- */
2 /* set vi: ts=8:softtabstop=4,shiftwidth=4,expandtab */
3 
4 #ifndef NDS_EXPORT_HH
5 #define NDS_EXPORT_HH
6 
7 #if WIN32 || WIN64
8 
9 #if NDS_EXPORT
10 #define DLL_EXPORT __declspec( dllexport )
11 #else /* NDS_EXPORT */
12 #define DLL_EXPORT __declspec( dllimport )
13 #endif /* NDS_EXPORT */
14 
15 #else /* WIN32 || WIN64 */
16 
17 #define DLL_EXPORT
18 
19 #endif /* WIN32 || WIN64 */
20 
21 #endif /* NDS_EXPORT_HH */