Fixed winapi example
All checks were successful
/ test (push) Successful in 16s

This commit is contained in:
Eduard Urbach 2025-07-15 10:00:58 +02:00
parent 7cc371070a
commit ccc221aa01
Signed by: ed
GPG key ID: 49226B848C78F6C8

View file

@ -1,7 +1,7 @@
main() {
title := "Title\0"
message := "Message\0"
user32.MessageBoxA(0, message.ptr, title.ptr, 0x240040)
user32.MessageBoxA(0, message.ptr, title.ptr, 0)
}
extern {