ktoblzcheck  1.59.0
src/include/ktoblzcheck_export.h
Go to the documentation of this file.
1 #ifndef KTOBLZCHECK_EXPORT_H
2 #define KTOBLZCHECK_EXPORT_H
3 
4 #ifdef KTOBLZCHECK_STATIC_DEFINE
5 # define KTOBLZCHECK_EXPORT
6 # define KTOBLZCHECK_NO_EXPORT
7 #else
8 # ifndef KTOBLZCHECK_EXPORT
9 # ifdef ktoblzcheck_EXPORTS
10 /* We are building this library */
11 # define KTOBLZCHECK_EXPORT
12 # else
13 /* We are using this library */
14 # define KTOBLZCHECK_EXPORT
15 # endif
16 # endif
17 
18 # ifndef KTOBLZCHECK_NO_EXPORT
19 # define KTOBLZCHECK_NO_EXPORT
20 # endif
21 #endif
22 
23 #ifndef KTOBLZCHECK_DEPRECATED
24 # define KTOBLZCHECK_DEPRECATED __attribute__ ((__deprecated__))
25 #endif
26 
27 #ifndef KTOBLZCHECK_DEPRECATED_EXPORT
28 # define KTOBLZCHECK_DEPRECATED_EXPORT KTOBLZCHECK_EXPORT KTOBLZCHECK_DEPRECATED
29 #endif
30 
31 #ifndef KTOBLZCHECK_DEPRECATED_NO_EXPORT
32 # define KTOBLZCHECK_DEPRECATED_NO_EXPORT KTOBLZCHECK_NO_EXPORT KTOBLZCHECK_DEPRECATED
33 #endif
34 
35 #if 0 /* DEFINE_NO_DEPRECATED */
36 # ifndef KTOBLZCHECK_NO_DEPRECATED
37 # define KTOBLZCHECK_NO_DEPRECATED
38 # endif
39 #endif
40 
41 #endif /* KTOBLZCHECK_EXPORT_H */