]> git.tdb.fi Git - libs/gui.git/blobdiff - source/graphics/windows/window_platform.h
Split platform-specific parts into separate directories
[libs/gui.git] / source / graphics / windows / window_platform.h
diff --git a/source/graphics/windows/window_platform.h b/source/graphics/windows/window_platform.h
new file mode 100644 (file)
index 0000000..1ff5cf3
--- /dev/null
@@ -0,0 +1,25 @@
+#ifndef MSP_GRAPHICS_WINDOW_PLATFORM_H_
+#define MSP_GRAPHICS_WINDOW_PLATFORM_H_
+
+#include <windows.h>
+
+namespace Msp {
+namespace Graphics {
+
+typedef HWND WindowHandle;
+
+struct PlatformWindowPrivate
+{
+};
+
+struct PlatformEvent
+{
+       UINT msg;
+       WPARAM wparam;
+       LPARAM lparam;
+};
+
+} // namespace Graphics
+} // namespace Msp
+
+#endif