diff options
| author | Pietro Gagliardi <[email protected]> | 2014-05-11 11:11:00 -0400 |
|---|---|---|
| committer | Pietro Gagliardi <[email protected]> | 2014-05-11 11:11:57 -0400 |
| commit | 9ed8d9c816ead83225edf75b562c136e3ceafa45 (patch) | |
| tree | f8d93b26d6995cf6a1126b57b446426702e6acb2 /common_windows.go | |
| parent | d0ac56c0fcbf12e69cb364058ed92254cef1d575 (diff) | |
Consistency change: all Windows API structure field names now match case-wise (some were forcibly exported in the past for historical reasons: I originally started package ui by trying to write a Windows API wrapper, but decided to ditch that and just use the Windows API directly from package ui). Also more TODOs.
Diffstat (limited to 'common_windows.go')
| -rw-r--r-- | common_windows.go | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/common_windows.go b/common_windows.go index fb78ed7..52bfddf 100644 --- a/common_windows.go +++ b/common_windows.go @@ -65,15 +65,15 @@ func (l _LPARAM) _Y() int32 { } type _POINT struct { - X int32 - Y int32 + x int32 + y int32 } type _RECT struct { - Left int32 - Top int32 - Right int32 - Bottom int32 + left int32 + top int32 + right int32 + bottom int32 } // Predefined cursor resource IDs. |
