winmsg 0.1.2

feature rich message box in windows
Documentation

winmsg

Feature rich Rust crate for creating a message box in Windows

Crates License

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