diff options
Diffstat (limited to 'platform/x11/os_x11.h')
-rw-r--r-- | platform/x11/os_x11.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/platform/x11/os_x11.h b/platform/x11/os_x11.h index 3a4579d818..71bbe726dd 100644 --- a/platform/x11/os_x11.h +++ b/platform/x11/os_x11.h @@ -178,8 +178,11 @@ class OS_X11 : public OS_Unix { void set_wm_fullscreen(bool p_enabled); typedef xrr_monitor_info* (*xrr_get_monitors_t)(Display *dpy, Window window, Bool get_active, int *nmonitors); + typedef void (*xrr_free_monitors_t)(xrr_monitor_info* monitors); xrr_get_monitors_t xrr_get_monitors; + xrr_free_monitors_t xrr_free_monitors; void *xrandr_handle; + Bool xrandr_ext_ok; protected: |