summaryrefslogtreecommitdiff
path: root/library/qpeglobal.h
authorzecke <zecke>2004-12-24 23:05:54 (UTC)
committer zecke <zecke>2004-12-24 23:05:54 (UTC)
commiteb16a7b3d17b0659a7d83900843cef8efb510ceb (patch) (unidiff)
tree7e493f8b38e9e1a3553d4e87fb36a962acd82c5c /library/qpeglobal.h
parentd36845f5f7e7d6bd49529524cdc9f39ce1164491 (diff)
downloadopie-eb16a7b3d17b0659a7d83900843cef8efb510ceb.zip
opie-eb16a7b3d17b0659a7d83900843cef8efb510ceb.tar.gz
opie-eb16a7b3d17b0659a7d83900843cef8efb510ceb.tar.bz2
Config:
Merged: void writeEntry( const QString &key, const QStringList &lst) QStringList readListEntry( const QString &key ) const void removeGroup() void removeGroup(const QString&) QStringList allGroups() const Uninlined: const versions of read*Entry bool hasGroup ( const QString &gname )const QStringList groupList ( )const Marked these methods as NOT_IN_QPE, NOT_IN_SHARP, QTOPIA_MERGED_METHOD(version) to make them weak by default and to know which functions needs to be defined for possible SHARP.ROM versions
Diffstat (limited to 'library/qpeglobal.h') (more/less context) (ignore whitespace changes)
-rw-r--r--library/qpeglobal.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/library/qpeglobal.h b/library/qpeglobal.h
index a84e435..f64ccfd 100644
--- a/library/qpeglobal.h
+++ b/library/qpeglobal.h
@@ -55,34 +55,37 @@
55#define QPE_SYMBOL_USED __attribute__((used)) 55#define QPE_SYMBOL_USED __attribute__((used))
56#define QPE_SYMBOL_UNUSED __attribute__((unused)) 56#define QPE_SYMBOL_UNUSED __attribute__((unused))
57#define QPE_EXPORT_SYMBOL 57#define QPE_EXPORT_SYMBOL
58 58
59 59
60/* 60/*
61 * mark method as deprecated 61 * mark method as deprecated
62 */ 62 */
63#if __GNUC__ - 0 > 3 || (__GNUC__ - 0 == 3 && __GNUC_MINOR__ - 0 >= 2) 63#if __GNUC__ - 0 > 3 || (__GNUC__ - 0 == 3 && __GNUC_MINOR__ - 0 >= 2)
64 /* gcc >= 3.2 */ 64 /* gcc >= 3.2 */
65#undef QPE_DEPRECATED 65#undef QPE_DEPRECATED
66#define QPE_DEPRECATED __attribute__((deprecated)) 66#define QPE_DEPRECATED __attribute__((deprecated))
67#endif 67#endif
68 68
69/* 69/*
70 * Defined if Compiler supports attributes 70 * Defined if Compiler supports attributes
71 */ 71 */
72#ifdef GCC_SUPPORTS_VISIBILITY 72#ifdef GCC_SUPPORTS_VISIBILITY
73#undef QPE_EXPORT_SYMBOL 73#undef QPE_EXPORT_SYMBOL
74#define QPE_EXPORT_SYMBOL __attribute__((visibility("default"))) 74#define QPE_EXPORT_SYMBOL __attribute__((visibility("default")))
75#endif 75#endif
76 76
77 77
78 78
79#else // defined(Q_OS_WIN32) 79#else // defined(Q_OS_WIN32)
80#define QPE_WEAK_SYMBOL 80#define QPE_WEAK_SYMBOL
81#define QPE_SYMBOL_USED 81#define QPE_SYMBOL_USED
82#define QPE_SYMBOL_UNUSED 82#define QPE_SYMBOL_UNUSED
83#define QPE_EXPORT_SYMBOL 83#define QPE_EXPORT_SYMBOL
84#endif 84#endif
85 85
86 86
87#define QTOPIA_MERGED_METHOD(method, version) method QPE_WEAK_SYMBOL;
88#define NOT_IN_SHARP(method) method QPE_WEAK_SYMBOL;
89#define NOT_IN_QPE(method) method QPE_WEAK_SYMBOL;
87 90
88#endif 91#endif