Skip to main content

windows_reactor/
lib.rs

1#![doc = include_str!("../readme.md")]
2
3mod app;
4mod core;
5mod element;
6mod generated;
7mod native;
8mod reference;
9#[cfg(any(test, feature = "test"))]
10pub mod test;
11
12use generated::*;
13#[cfg(test)]
14pub(crate) use test::*;
15
16pub use app::*;
17pub use core::public::*;
18pub use element::*;
19pub use generated::public::*;
20pub use reference::{
21    CompositionHostError, CompositionHostEvent, ElementObservation, ElementRef, FocusControl,
22    FocusError, ImageSourceError, IntegrationError, ReferenceControl, SwapChainPanelError,
23    SwapChainPanelEvent, WebView2Error, WindowRef,
24};
25pub use windows_time::{DateTime, TimeSpan};