Skip to content

nchgroup/messagebox

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Message Box

#include <windows.h>

int main()
{
    MessageBox(NULL, "Test", "Msg test", MB_OK | MB_ICONINFORMATION);
    return 0;
}

Compile

x86_64-w64-mingw32-gcc -Os -flto -fdata-sections -ffunction-sections -Wl,--gc-sections -s -mwindows -o test.exe main.c

Dependencies

brew install mingw-w64

About

MessageBox Example

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published