2个不稳定版本

0.1.0 2024年6月10日
0.0.0 2024年2月2日

300Windows API

Download history 117/week @ 2024-06-07 14/week @ 2024-06-14

每月70次下载

MIT/Apache

1.5MB

包含 (DOS exe, 1.5MB) cppwinrt.exe

C++/WinRT

cppwinrt crate 将 C++/WinRT 编译器打包以用于 Rust。

首先将以下内容添加到您的 Cargo.toml 文件中

[dependencies.cppwinrt]
version = "0.1"

根据需要使用 cppwinrt 函数

fn main() {
    match cppwinrt::cppwinrt(["-help"]) {
        Ok(output) => println!("{output}"),
        Err(error) => println!("{error}"),
    };
}


lib.rs:

在此了解有关Rust for Windows的更多信息:https://github.com/microsoft/windows-rs

无运行时依赖