]> git.tdb.fi Git - libs/gui.git/blob - source/graphics/windows/window_platform.h
1ff5cf367669a9a63558cd750a5125bcf794509f
[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 };
21
22 } // namespace Graphics
23 } // namespace Msp
24
25 #endif