diff options
| author | Pietro Gagliardi <[email protected]> | 2014-02-07 21:17:24 -0500 |
|---|---|---|
| committer | Pietro Gagliardi <[email protected]> | 2014-02-07 21:17:24 -0500 |
| commit | 35e8a028f5d5f9654d7fa34ebadf26cfef845759 (patch) | |
| tree | d1673b4cf78e5fe9c8213f2490b11ecdd34ae05c /common.go | |
Initial commit. Added MessageBox() code.
Diffstat (limited to 'common.go')
| -rw-r--r-- | common.go | 17 |
1 files changed, 17 insertions, 0 deletions
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 +) + |
