You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Sep 14, 2022. It is now read-only.
I was playing around with binding wlroots (the compositor library spawned out of sway) and needed some wayland values.
The specific one I found was the struct wl_display * for the server.
Currently the type exists but the newtype constructor isn't exported which makes bindings to other libraries that use the C values impossible.
To use this library when binding to oder libraries that use some wayland values, it would be important to export at least the Ptr types for wl_ structs.
I was playing around with binding wlroots (the compositor library spawned out of sway) and needed some wayland values.
The specific one I found was the
struct wl_display *for the server.Currently the type exists but the newtype constructor isn't exported which makes bindings to other libraries that use the C values impossible.
To use this library when binding to oder libraries that use some wayland values, it would be important to export at least the Ptr types for
wl_structs.