pmse_gtk/lib.rs
1//! pmse-gtk
2#![deny(unsafe_code)]
3
4mod err;
5mod gtk_main;
6mod raw_handle;
7mod wayland_conn;
8mod wayland_subsurface;
9
10pub use err::E;
11pub use gtk4::glib::ExitCode;
12pub use gtk_main::{pmse_gtk_main, Cb};
13pub use raw_handle::HandleBox;
14pub use wayland_conn::WaylandConn;
15pub use wayland_subsurface::VulkanSurface;
16
17#[cfg(test)]
18mod tests {
19 // TODO
20}