Move Web backend to winit-web
This commit is contained in:
parent
2d4b9938f0
commit
e542a78deb
50 changed files with 259 additions and 273 deletions
18
winit-web/src/async/mod.rs
Normal file
18
winit-web/src/async/mod.rs
Normal file
|
|
@ -0,0 +1,18 @@
|
|||
mod abortable;
|
||||
#[cfg(not(target_feature = "atomics"))]
|
||||
mod atomic_waker;
|
||||
mod channel;
|
||||
#[cfg(not(target_feature = "atomics"))]
|
||||
mod concurrent_queue;
|
||||
mod dispatcher;
|
||||
mod notifier;
|
||||
mod wrapper;
|
||||
|
||||
pub(crate) use atomic_waker::AtomicWaker;
|
||||
use concurrent_queue::{ConcurrentQueue, PushError};
|
||||
|
||||
pub use self::abortable::{AbortHandle, Abortable, DropAbortHandle};
|
||||
pub use self::channel::{channel, Receiver, Sender};
|
||||
pub use self::dispatcher::{DispatchRunner, Dispatcher};
|
||||
pub use self::notifier::{Notified, Notifier};
|
||||
pub(crate) use self::wrapper::Wrapper;
|
||||
Loading…
Add table
Add a link
Reference in a new issue