From a9e9e88f0629afd7d34022c45197ac6941820f81 Mon Sep 17 00:00:00 2001 From: Wesley Kerfoot Date: Sun, 3 Aug 2025 11:30:09 -0400 Subject: [PATCH] add missing xlib functions for getting and setting text properties --- vendor/x11/xlib/xlib_procs.odin | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/vendor/x11/xlib/xlib_procs.odin b/vendor/x11/xlib/xlib_procs.odin index 2cd4e0f83..f5ac373ae 100644 --- a/vendor/x11/xlib/xlib_procs.odin +++ b/vendor/x11/xlib/xlib_procs.odin @@ -389,6 +389,18 @@ foreign xlib { requestor: Window, time: Time, ) --- + GetTextProperty :: proc( + display: ^Display, + window: Window, + text_prop_return: ^XTextProperty, + property: Atom, + ) -> Status --- + SetTextProperty :: proc( + display: ^Display, + window: Window, + text_prop: ^XTextProperty, + property: Atom, + ) --- // Creating and freeing pixmaps CreatePixmap :: proc( display: ^Display,