1
2
3
4
5
6
use win_msgbox::Okay;
use windows_sys::w;

fn main() {
    assert_eq!(win_msgbox::show::<Okay>(w!("Hello World")), Ok(Okay));
}