Initial commit

This commit is contained in:
Shawn Wallace 2024-04-29 00:27:22 -04:00
commit 85b940e427
21 changed files with 6825 additions and 0 deletions

19
wl_drm/src/lib.rs Normal file
View file

@ -0,0 +1,19 @@
#![allow(non_camel_case_types, non_upper_case_globals)]
pub mod client {
use wayland_client::{self, protocol::*};
pub mod __interfaces {
use wayland_client::protocol::__interfaces::*;
use wayland_client::backend as wayland_backend;
wayland_scanner::generate_interfaces!("src/drm.xml");
}
use self::__interfaces::*;
wayland_scanner::generate_client_code!("src/drm.xml");
}
pub mod server {
use wayland_server::{self, protocol::*};
pub use super::client::__interfaces;
use self::__interfaces::*;
wayland_scanner::generate_server_code!("src/drm.xml");
}