summaryrefslogtreecommitdiff
path: root/rectangles_windows.go
diff options
context:
space:
mode:
Diffstat (limited to 'rectangles_windows.go')
-rw-r--r--rectangles_windows.go21
1 files changed, 21 insertions, 0 deletions
diff --git a/rectangles_windows.go b/rectangles_windows.go
new file mode 100644
index 0000000..c0c29d5
--- /dev/null
+++ b/rectangles_windows.go
@@ -0,0 +1,21 @@
+// 9 february 2014
+package main
+
+import (
+// "syscall"
+// "unsafe"
+)
+
+// TODO merge with common.go?
+
+type POINT struct {
+ X int32
+ Y int32
+}
+
+type RECT struct {
+ Left int32
+ Top int32
+ Right int32
+ Bottom int32
+}