t-rec 0.7.10

Blazingly fast terminal recorder that generates animated gif images for the web written in rust.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
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")
}

// references for winRT
// https://github.com/robmikh/wgc-rust-demo/blob/master/src/main.rs