summaryrefslogtreecommitdiff
path: root/common.go
diff options
context:
space:
mode:
Diffstat (limited to 'common.go')
-rw-r--r--common.go17
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
+)
+