#string #tiny #windows #understand #convert-string #help #macro

tinywinstr

一个简单的宏,帮助将Rust字符串转换为Windows能理解的格式

5个版本

0.0.5 2021年10月24日
0.0.4 2021年10月24日
0.0.3 2021年10月24日
0.0.2 2021年10月24日
0.0.1 2021年10月23日

#182 in Windows APIs

MIT许可证

3KB

tinywinstr

用于处理Windows中Rust字符串的微型库。

#![cfg(target_os = "windows")]
#![windows_subsystem = "windows"]

use std::ptr::null_mut;
use tinywinstr::winstr;
use winapi::um::winuser::{MessageBoxW, MB_OK};

fn main() {
    unsafe {
        MessageBoxW(null_mut(), winstr!("My message"), winstr!("My title"), MB_OK);
    }
}

无运行时依赖