~aleteoryx/TabbDE

ref: bdac70b36dd3e17c5f0d7fda49335a5253377dc0 TabbDE/rust/urish/src/lib.rs -rw-r--r-- 758 bytes
bdac70b3Aleteoryx starting over! 3 days ago
                                                                                
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
// Generate the bindings in their own modules
pub mod client_proto {
    use wayland_client;
    use wayland_client::protocol::*;

    pub mod __interfaces {
        use wayland_client::protocol::__interfaces::*;
        wayland_scanner::generate_interfaces!("../../proto/uri_shell.xml");
    }
    use self::__interfaces::*;

    wayland_scanner::generate_client_code!("../../proto/uri_shell.xml");
}
pub mod server_proto {
    use wayland_server;
    use wayland_server::protocol::*;

    pub mod __interfaces {
        use wayland_server::protocol::__interfaces::*;
        wayland_scanner::generate_interfaces!("../../proto/uri_shell.xml");
    }
    use self::__interfaces::*;

    wayland_scanner::generate_server_code!("../../proto/uri_shell.xml");
}