diff options
| author | Pietro Gagliardi <[email protected]> | 2014-02-11 16:17:17 -0500 |
|---|---|---|
| committer | Pietro Gagliardi <[email protected]> | 2014-02-11 16:17:17 -0500 |
| commit | 9b19ee72457586e41da5788f802c6bc55ea7a84b (patch) | |
| tree | eea575b4db46d314f27a1da3044a25dea7787dc7 /unmigrated/rectangles_windows.go | |
| parent | 9794814e9375e597d087b94e9643c943f7999f9c (diff) | |
Moved things that I haven't migated yet out of the way for now.
Diffstat (limited to 'unmigrated/rectangles_windows.go')
| -rw-r--r-- | unmigrated/rectangles_windows.go | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/unmigrated/rectangles_windows.go b/unmigrated/rectangles_windows.go new file mode 100644 index 0000000..c0c29d5 --- /dev/null +++ b/unmigrated/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 +} |
