use crate::{ImageOnHeap, WindowList};
pub const DEFAULT_SHELL: &str = "cmd.exe";
pub fn window_list() -> anyhow::Result<WindowList> {
unimplemented!("there is only an impl for MacOS")
}
pub fn capture_window_screenshot(_win_id: u64) -> anyhow::Result<ImageOnHeap> {
unimplemented!("there is only an impl for MacOS")
}