QuaZIP  quazip-0-5
quazip_global.h
1 
24 #ifndef QUAZIP_GLOBAL_H
25 #define QUAZIP_GLOBAL_H
26 
27 #include <QtCore/qglobal.h>
28 
35 #ifdef QUAZIP_STATIC
36 #define QUAZIP_EXPORT
37 #else
38 
42 #if defined(QUAZIP_BUILD)
43  #define QUAZIP_EXPORT Q_DECL_EXPORT
44 #else
45  #define QUAZIP_EXPORT Q_DECL_IMPORT
46 #endif
47 #endif // QUAZIP_STATIC
48 
49 #ifdef __GNUC__
50 #define UNUSED __attribute__((__unused__))
51 #else
52 #define UNUSED
53 #endif
54 
55 #endif // QUAZIP_GLOBAL_H