aqbanking  5.7.8
aqofxconnect.h
Go to the documentation of this file.
1 /***************************************************************************
2  begin : Mon Mar 01 2004
3  copyright : (C) 2004 by Martin Preuss
4  email : martin@libchipcard.de
5 
6  ***************************************************************************
7  * Please see toplevel file COPYING for license details *
8  ***************************************************************************/
9 
10 
11 #ifndef AQOFXCONNECT_AQOFXCONNECT_H
12 #define AQOFXCONNECT_AQOFXCONNECT_H
13 
14 
15 #include <aqbanking/system.h>
16 
17 #ifdef BUILDING_AQOFXCONNECT
18 # /* building AqOFXCONNECT */
19 # if AQBANKING_SYS_IS_WINDOWS
20 # /* for windows */
21 # ifdef __declspec
22 # define AQOFXCONNECT_API __declspec (dllexport)
23 # else /* if __declspec */
24 # define AQOFXCONNECT_API
25 # endif /* if NOT __declspec */
26 # else
27 # /* for non-win32 */
28 # ifdef GCC_WITH_VISIBILITY_ATTRIBUTE
29 # define AQOFXCONNECT_API __attribute__((visibility("default")))
30 # else
31 # define AQOFXCONNECT_API
32 # endif
33 # endif
34 #else
35 # /* not building AqOFXCONNECT */
36 # if AQBANKING_SYS_IS_WINDOWS
37 # /* for windows */
38 # ifdef __declspec
39 # define AQOFXCONNECT_API __declspec (dllimport)
40 # else /* if __declspec */
41 # define AQOFXCONNECT_API
42 # endif /* if NOT __declspec */
43 # else
44 # /* for non-win32 */
45 # define AQOFXCONNECT_API
46 # endif
47 #endif
48 
49 
50 #define AQOFXCONNECT_LOGDOMAIN "aqofxconnect"
51 
52 
53 #endif /* AQOFXCONNECT_AQOFXCONNECT_H */
54