quork 0.3.2

A collection of small things that don't deserve their own crate
Documentation
1
2
3
4
5
6
7
8
9
10
11
use cc::Build;

fn main() {
    if cfg!(windows) {
        println!("cargo:rustc-link-lib=ole32");

        Build::new()
            .file("include/win/network.c")
            .compile("networkcomid");
    }
}