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 /windows_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 'windows_windows.go')
| -rw-r--r-- | windows_windows.go | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/windows_windows.go b/windows_windows.go index aa3d5c2..ea848f9 100644 --- a/windows_windows.go +++ b/windows_windows.go @@ -288,11 +288,11 @@ const ( ) type _MINMAXINFO struct { - PtReserved _POINT - PtMaxSize _POINT - PtMaxPosition _POINT - PtMinTrackSize _POINT - PtMaxTrackSize _POINT + ptReserved _POINT + ptMaxSize _POINT + ptMaxPosition _POINT + ptMinTrackSize _POINT + ptMaxTrackSize _POINT } func (l _LPARAM) MINMAXINFO() *_MINMAXINFO { |
