taskbar_interface 0.1.0

An interface to the desktop taskbar
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
#[cfg(target_os = "windows")]
fn main() {
    windows::build!(
        Windows::Win32::System::Com::*,
        Windows::Win32::System::SystemServices::*,
        Windows::Win32::System::Diagnostics::Debug::*,
        Windows::Win32::UI::Shell::*,
    );
}

#[cfg(not(target_os = "windows"))]
fn main() {}