native-windows-gui 1.0.13

A rust library to develop native GUI applications on the desktop for Microsoft Windows. Native-windows-gui wraps the native win32 window controls in a rustic API
Documentation
1
2
3
4
5
6
extern crate build;
fn main() {
    if cfg!(feature = "file-dialog") {
        build::link("shell32", true);
    }
}