#ifndef PlatformWebView_h
#define PlatformWebView_h
-#if __APPLE__
+#if defined(__APPLE__) && __APPLE__
#if __OBJC__
@class WKView;
@class NSWindow;
#elif defined(WIN32) || defined(_WIN32)
typedef WKViewRef PlatformWKView;
typedef HWND PlatformWindow;
+#elif defined(BUILDING_QT__)
+typedef void* PlatformWKView;
+typedef void* PlatformWindow;
#endif
namespace WTR {