summaryrefslogtreecommitdiffstats
path: root/Source/WebKit2/Platform/Module.h
diff options
context:
space:
mode:
Diffstat (limited to 'Source/WebKit2/Platform/Module.h')
-rw-r--r--Source/WebKit2/Platform/Module.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/Source/WebKit2/Platform/Module.h b/Source/WebKit2/Platform/Module.h
index ec7523c..47899e9 100644
--- a/Source/WebKit2/Platform/Module.h
+++ b/Source/WebKit2/Platform/Module.h
@@ -37,6 +37,10 @@
#include <QLibrary>
#endif
+#if PLATFORM(GTK)
+typedef struct _GModule GModule;
+#endif
+
namespace WebKit {
class Module {
@@ -62,6 +66,8 @@ private:
HMODULE m_module;
#elif PLATFORM(QT)
QLibrary m_lib;
+#elif PLATFORM(GTK)
+ GModule* m_handle;
#endif
};