#winapi #message-box #windows

winmsg

feature rich message box in windows

3 releases

0.1.2 May 12, 2024
0.1.1 Sep 16, 2023
0.1.0 Sep 16, 2023

#69 in #winapi

Download history 4/week @ 2024-02-21 21/week @ 2024-02-28 1/week @ 2024-03-06 2/week @ 2024-03-13 9/week @ 2024-03-27 20/week @ 2024-04-03 50/week @ 2024-04-24 141/week @ 2024-05-08 12/week @ 2024-05-15

203 downloads per month

Custom license

7KB
141 lines

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

Dependencies

~141MB
~2M SLoC