1 2 3 4 5 6 7 8 9
//! Windows backend. use crate::{EventReceiver, Platform, PlatformError, Result}; pub(crate) fn init() -> Result<(Box<dyn Platform>, EventReceiver)> { Err(PlatformError::Unsupported { what: "windows backend not implemented yet", }) }