From 5d339e656b66d00356960ae057969532d34245b4 Mon Sep 17 00:00:00 2001 From: Pietro Gagliardi Date: Wed, 2 Jul 2014 17:13:40 -0400 Subject: Moved everything out of the way pending rewrite. --- prevlib/controls_windows.go | 42 ++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 42 insertions(+) create mode 100644 prevlib/controls_windows.go (limited to 'prevlib/controls_windows.go') diff --git a/prevlib/controls_windows.go b/prevlib/controls_windows.go new file mode 100644 index 0000000..b9c462f --- /dev/null +++ b/prevlib/controls_windows.go @@ -0,0 +1,42 @@ +// 9 february 2014 + +package ui + +import ( +// "syscall" +// "unsafe" +) + +/* +var ( + _checkRadioButton = user32.NewProc("CheckRadioButton") +) + +func CheckRadioButton(hDlg HWND, nIDFirstButton int, nIDLastButton int, nIDCheckButton int) (err error) { + r1, _, err := _checkRadioButton.Call( + uintptr(hDlg), + uintptr(nIDFirstButton), + uintptr(nIDLastButton), + uintptr(nIDCheckButton)) + if r1 == 0 { // failure + return err + } + return nil +} +*/ + +var ( + _getScrollInfo = user32.NewProc("GetScrollInfo") + _setScrollInfo = user32.NewProc("SetScrollInfo") + _scrollWindowEx = user32.NewProc("ScrollWindowEx") +) + +type _SCROLLINFO struct { + cbSize uint32 + fMask uint32 + nMin int32 // originally int + nMax int32 // originally int + nPage uint32 + nPos int32 // originally int + nTrackPos int32 // originally int +} -- cgit v1.2.3