1 2 3 4 5 6 7 8 9 10 11 12
//! Windows wallpaper backends (stub for future implementation) #[cfg(target_os = "windows")] #[derive(Default)] pub struct WindowsSystemParametersBackend; #[cfg(target_os = "windows")] impl WindowsSystemParametersBackend { pub fn new() -> Self { Self } }