From 35e8a028f5d5f9654d7fa34ebadf26cfef845759 Mon Sep 17 00:00:00 2001 From: Pietro Gagliardi Date: Fri, 7 Feb 2014 21:17:24 -0500 Subject: Initial commit. Added MessageBox() code. --- common.go | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 common.go (limited to 'common.go') diff --git a/common.go b/common.go new file mode 100644 index 0000000..8b4daa5 --- /dev/null +++ b/common.go @@ -0,0 +1,17 @@ +// 7 february 2014 +package main + +import ( + "syscall" +) + +var ( + user32 = syscall.NewLazyDLL("user32.dll") +) + +type HWND uintptr + +const ( + NULL = 0 +) + -- cgit v1.2.3