#irox #api-bindings #irox-safe

irox-safe-windows

封装Windows原生不安全函数,使其更加易用

3个版本

0.1.2 2024年5月18日
0.1.1 2024年3月3日
0.1.0 2023年12月23日

#113Windows API

Download history 171/week @ 2024-05-14 25/week @ 2024-05-21 1/week @ 2024-05-28 3/week @ 2024-06-04 3/week @ 2024-06-11

每月 218 次下载
用于 irox-unsafe

MIT/Apache

39KB
lines of code

futures-lite

封装Windows原生不安全函数,使其更加易用

optional feature

  • full
use irox_safe_windows::credentials::{Credentials, PromptOptions, prompt};
use irox_safe_windows::error::Error;

pub fn main() -> Result<(), Error> {
    let options = PromptOptions::new()
        .with_title("Little Title Text!")
        .with_subtitle("Big Title Text!");
    let creds : Credentials = prompt(&options)?;
    let username : &String = &creds.username;
    let password : &String = &creds.password;
    let user_requested_save : &bool = &creds.save_requested;
    Ok(())
}

img.png

features

Win32 API
System Information