1
0
Fork 0
forked from wry/wry

wayland: add a generic wayland client

This commit is contained in:
Julian Orth 2022-07-30 13:16:58 +02:00
parent 163adbd893
commit 2512470231
34 changed files with 2627 additions and 1 deletions

View file

@ -1,4 +1,3 @@
pub use error::{ClientError, MethodError, ObjectError};
use {
crate::{
async_engine::SpawnedFuture,
@ -30,6 +29,10 @@ use {
},
uapi::{c, OwnedFd},
};
pub use {
error::{ClientError, MethodError, ObjectError},
objects::MIN_SERVER_ID,
};
mod error;
mod objects;