#winapi #calls #wrapper #function #handful #process #computer

winutil

提供针对一些有用的winapi调用包装的简单库

1 个不稳定版本

使用旧的 Rust 2015

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

150Windows API

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

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