]> git.tdb.fi Git - libs/gui.git/blob - source/graphics/x11/display_platform.h
3a213c009eaa7004cf98e24286b4fe5d63621e15
[libs/gui.git] / source / graphics / x11 / display_platform.h
1 #ifndef MSP_GRAPHICS_DISPLAY_PLATFORM_H_
2 #define MSP_GRAPHICS_DISPLAY_PLATFORM_H_
3
4 #include <X11/Xlib.h>
5 #ifdef WITH_XRANDR
6 #include <X11/extensions/Xrandr.h>
7 #endif
8
9 namespace Msp {
10 namespace Graphics {
11
12 typedef ::Display *DisplayHandle;
13 #ifdef WITH_XRANDR
14 typedef RROutput MonitorHandle;
15 typedef RRMode ModeHandle;
16 #else
17 typedef int MonitorHandle;
18 typedef int ModeHandle;
19 #endif
20
21 } // namespace Graphics
22 } // namespace Msp
23
24 #endif