summaryrefslogtreecommitdiff
path: root/controls_windows.go
diff options
context:
space:
mode:
authorPietro Gagliardi <[email protected]>2014-08-30 23:01:08 -0400
committerPietro Gagliardi <[email protected]>2014-08-30 23:01:08 -0400
commit155899c65ed32245e2ccad4197a10c77017d835b (patch)
tree4c337130ff5d1640efc1e94258ab3b8a9eef0c55 /controls_windows.go
parent3d4e54822dc6117306d5a4ac0e79017c4810b657 (diff)
Out with the old...
Diffstat (limited to 'controls_windows.go')
-rw-r--r--controls_windows.go42
1 files changed, 0 insertions, 42 deletions
diff --git a/controls_windows.go b/controls_windows.go
deleted file mode 100644
index b9c462f..0000000
--- a/controls_windows.go
+++ /dev/null
@@ -1,42 +0,0 @@
-// 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
-}