diff options
| author | dogue <dogue@oddhelix.com> | 2025-03-23 22:09:42 -0400 |
|---|---|---|
| committer | dogue <dogue@oddhelix.com> | 2025-03-23 22:09:42 -0400 |
| commit | 87db5f2df4ba2edda0839f616f48232b60530111 (patch) | |
| tree | ff517e2d93e91e50be04a43221e13083a7f777bf | |
| parent | 2e64f5f6397551b7a11e4f46c838c50bdf379e7d (diff) | |
xlib: add proc binding for SetWindowBorder
| -rw-r--r-- | vendor/x11/xlib/xlib_procs.odin | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/vendor/x11/xlib/xlib_procs.odin b/vendor/x11/xlib/xlib_procs.odin index 2d35ab179..780cf1b97 100644 --- a/vendor/x11/xlib/xlib_procs.odin +++ b/vendor/x11/xlib/xlib_procs.odin @@ -217,6 +217,11 @@ foreign xlib { window: Window, width: u32, ) --- + SetWindowBorder :: proc( + display: ^Display, + window: Window, + pixel: uint, + ) --- // Window: changing stacking order RaiseWindow :: proc(display: ^Display, window: Window) --- LowerWindow :: proc(display: ^Display, window: Window) --- |