Changeset 58494 in webkit for trunk/JavaScriptCore/qt
- Timestamp:
- Apr 29, 2010, 3:25:16 AM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/qt/api/qtscriptglobal.h
r53850 r58494 23 23 #include <QtCore/qglobal.h> 24 24 25 #if defined(Q_OS_WIN) || defined(Q_OS_SYMBIAN) 26 # if defined(QT_NODLL) 27 # elif defined(QT_MAKEDLL) /* create a Qt DLL library */ 28 # if defined(QT_BUILD_JAVASCRIPT_LIB) 29 # define Q_JAVASCRIPT_EXPORT Q_DECL_EXPORT 30 # else 31 # define Q_JAVASCRIPT_EXPORT Q_DECL_IMPORT 32 # endif 33 # elif defined(QT_DLL) /* use a Qt DLL library */ 25 #if defined(QT_MAKEDLL) /* create a Qt DLL library */ 26 # if defined(QT_BUILD_JAVASCRIPT_LIB) 27 # define Q_JAVASCRIPT_EXPORT Q_DECL_EXPORT 28 # else 29 # define Q_JAVASCRIPT_EXPORT Q_DECL_IMPORT 30 # endif 31 #elif defined(QT_DLL) /* use a Qt DLL library */ 32 # define Q_JAVASCRIPT_EXPORT 33 #endif 34 35 #if !defined(Q_JAVASCRIPT_EXPORT) 36 # if defined(QT_SHARED) 37 # define Q_JAVASCRIPT_EXPORT Q_DECL_EXPORT 38 # else 34 39 # define Q_JAVASCRIPT_EXPORT 35 40 # endif 36 41 #endif 37 42 38 #if defined(QT_SHARED)39 # define Q_JAVASCRIPT_EXPORT Q_DECL_EXPORT40 #else41 # define Q_JAVASCRIPT_EXPORT42 43 #endif 43 44 #endif
Note:
See TracChangeset
for help on using the changeset viewer.