aboutsummaryrefslogtreecommitdiffstats
path: root/src/x11/ffi.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/x11/ffi.rs')
-rw-r--r--src/x11/ffi.rs11
1 files changed, 11 insertions, 0 deletions
diff --git a/src/x11/ffi.rs b/src/x11/ffi.rs
index b636b99..5caabc5 100644
--- a/src/x11/ffi.rs
+++ b/src/x11/ffi.rs
@@ -241,6 +241,17 @@ pub struct XClientMessageEvent {
pub l: [libc::c_long, ..5],
}
+#[reprc(C)]
+pub struct XResizeRequestEvent {
+ pub type_: libc::c_int,
+ pub serial: libc::c_ulong,
+ pub send_event: Bool,
+ pub display: *mut Display,
+ pub window: Window,
+ pub width: libc::c_int,
+ pub height: libc::c_int,
+}
+
#[link(name = "GL")]
#[link(name = "X11")]
extern "C" {