]> git.tdb.fi Git - libs/gui.git/blob - source/graphics/windows/window_platform.h
7d53f555e9c4d8dc5e902103c41b1d1e119ed61c
[libs/gui.git] / source / graphics / windows / window_platform.h
1 #ifndef MSP_GRAPHICS_WINDOW_PLATFORM_H_
2 #define MSP_GRAPHICS_WINDOW_PLATFORM_H_
3
4 #include <windows.h>
5
6 namespace Msp {
7 namespace Graphics {
8
9 typedef HWND WindowHandle;
10
11 struct PlatformWindowPrivate
12 {
13 };
14
15 struct PlatformEvent
16 {
17         UINT msg;
18         WPARAM wparam;
19         LPARAM lparam;
20         LPARAM extra;
21 };
22
23 } // namespace Graphics
24 } // namespace Msp
25
26 #endif