Skip to content

Instantly share code, notes, and snippets.

View bytequill's full-sized avatar

[email protected] bytequill

View GitHub Profile
@bytequill
bytequill / messagebox.go
Last active April 12, 2024 22:19 — forked from NaniteFactory/messagebox.go
Win32 API MessageBox() in Golang
import (
"syscall"
"unsafe"
)
func newGoWinAPI() GoWinAPI {
return GoWinAPI{
winAPI: NewWinAPI(),
}
}