zig/example/hello_world/hello_windows.zig

7 lines
206 B
Zig
Raw Normal View History

2017-09-24 15:54:59 +08:00
use @import("std").os.windows;
export fn WinMain(hInstance: HINSTANCE, hPrevInstance: HINSTANCE, lpCmdLine: PWSTR, nCmdShow: INT) -> INT {
_ = MessageBoxA(null, c"hello", c"title", 0);
return 0;
}