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
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);
}
}