winmsg

Crates.iowinmsg
lib.rswinmsg
version0.1.2
sourcesrc
created_at2023-09-16 15:45:27.699338
updated_at2024-05-12 16:29:28.423599
descriptionfeature rich message box in windows
homepagehttps://github.com/thewh1teagle/winmsg
repositoryhttps://github.com/thewh1teagle/winmsg
max_upload_size
id974411
size10,627
(thewh1teagle)

documentation

https://github.com/thewh1teagle/winmsg

README

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

Commit count: 11

cargo fmt