3 releases
0.1.2 | May 12, 2024 |
---|---|
0.1.1 | Sep 16, 2023 |
0.1.0 | Sep 16, 2023 |
#154 in Windows APIs
26 downloads per month
7KB
141 lines
winmsg
Feature rich Rust
crate
for creating a message box in Windows
Install
cargo add winmsg
Basic usage
use winmsg::{message_box, Options};
fn main() {
message_box(Options {
title: "Hello world!".into(),
description: "How are you?".into(),
..Default::default()
});
}
Examples
See examples
Dependencies
~130MB
~2M SLoC