1 个不稳定版本

使用旧的 Rust 2015

0.1.1 2017年12月19日
0.1.0 2016年3月31日

150Windows API

Download history • Rust 包仓库 6060/week @ 2024-03-17 • Rust 包仓库 11463/week @ 2024-03-24 • Rust 包仓库 12425/week @ 2024-03-31 • Rust 包仓库 2711/week @ 2024-04-07 • Rust 包仓库 4610/week @ 2024-04-14 • Rust 包仓库 4866/week @ 2024-04-21 • Rust 包仓库 5186/week @ 2024-04-28 • Rust 包仓库 2110/week @ 2024-05-05 • Rust 包仓库 5233/week @ 2024-05-12 • Rust 包仓库 9169/week @ 2024-05-19 • Rust 包仓库 3106/week @ 2024-05-26 • Rust 包仓库 1398/week @ 2024-06-02 • Rust 包仓库 939/week @ 2024-06-09 • Rust 包仓库 1117/week @ 2024-06-16 • Rust 包仓库 1162/week @ 2024-06-23 • Rust 包仓库 354/week @ 2024-06-30 • Rust 包仓库

3,719 每月下载量

MIT 许可证

5KB
87

Winutil

一个简单库,包装了一组有用的winapi函数。

用法

将此内容添加到您的 Cargo.toml

[dependencies]
winutil = "^0.1"

并在此处添加

extern crate winutil;

然后您可以使用以下函数

// Detect if the current process is running under the WoW64 subsytem.
is_wow64_process();
// Return an Option containing the NetBIOS name of the local computer.
get_computer_name();
// Return an Option containing the user associated with the current thread.
get_user_name();

依赖

~175KB