|
Lines 97-105
const PlatformFileHandle invalidPlatform
WebCore/platform/FileSystem.h_sec1
|
| 97 |
#if defined(Q_WS_MAC) |
97 |
#if defined(Q_WS_MAC) |
| 98 |
typedef CFBundleRef PlatformModule; |
98 |
typedef CFBundleRef PlatformModule; |
| 99 |
typedef unsigned PlatformModuleVersion; |
99 |
typedef unsigned PlatformModuleVersion; |
| 100 |
#elif defined(Q_WS_X11) || defined(Q_WS_QWS) || defined(Q_WS_S60) |
|
|
| 101 |
typedef QLibrary* PlatformModule; |
| 102 |
typedef unsigned PlatformModuleVersion; |
| 103 |
#elif defined(Q_OS_WIN) |
100 |
#elif defined(Q_OS_WIN) |
| 104 |
typedef HMODULE PlatformModule; |
101 |
typedef HMODULE PlatformModule; |
| 105 |
struct PlatformModuleVersion { |
102 |
struct PlatformModuleVersion { |
|
Lines 119-124
struct PlatformModuleVersion {
WebCore/platform/FileSystem.h_sec2
|
| 119 |
} |
116 |
} |
| 120 |
|
117 |
|
| 121 |
}; |
118 |
}; |
|
|
119 |
#else |
| 120 |
typedef QLibrary* PlatformModule; |
| 121 |
typedef unsigned PlatformModuleVersion; |
| 122 |
#endif |
122 |
#endif |
| 123 |
|
123 |
|
| 124 |
#else |
124 |
#else |