diff options
| author | Pietro Gagliardi <[email protected]> | 2016-05-30 00:14:46 -0400 |
|---|---|---|
| committer | Pietro Gagliardi <[email protected]> | 2016-05-30 00:14:46 -0400 |
| commit | 52f7d276a6bb04b8827ac019ad1e135b43819cea (patch) | |
| tree | 5f0ebbfdf5885ef832e77e243b5916e59f46ba18 /prev/common_windows.go | |
| parent | c9b32c1333e4009b342eedc5f5b39127a724fb42 (diff) | |
Removed prev/.
Diffstat (limited to 'prev/common_windows.go')
| -rw-r--r-- | prev/common_windows.go | 58 |
1 files changed, 0 insertions, 58 deletions
diff --git a/prev/common_windows.go b/prev/common_windows.go deleted file mode 100644 index 7a12a8a..0000000 --- a/prev/common_windows.go +++ /dev/null @@ -1,58 +0,0 @@ -// 12 july 2014 - -package ui - -import ( - "fmt" - "reflect" - "syscall" - "unsafe" -) - -// #include "winapi_windows.h" -import "C" - -//export xpanic -func xpanic(msg *C.char, lasterr C.DWORD) { - panic(fmt.Errorf("%s: %s", C.GoString(msg), syscall.Errno(lasterr))) -} - -//export xpanichresult -func xpanichresult(msg *C.char, hresult C.HRESULT) { - panic(fmt.Errorf("%s; HRESULT: 0x%X", C.GoString(msg), hresult)) -} - -//export xpaniccomdlg -func xpaniccomdlg(msg *C.char, err C.DWORD) { - panic(fmt.Errorf("%s; comdlg32.dll extended error: 0x%X", C.GoString(msg), err)) -} - -//export xmissedmsg -func xmissedmsg(purpose *C.char, f *C.char, uMsg C.UINT) { - panic(fmt.Errorf("%s window procedure message %d does not return a value (bug in %s)", C.GoString(purpose), uMsg, C.GoString(f))) -} - -func toUTF16(s string) C.LPWSTR { - return C.LPWSTR(unsafe.Pointer(syscall.StringToUTF16Ptr(s))) -} - -func getWindowText(hwnd C.HWND) string { - // WM_GETTEXTLENGTH and WM_GETTEXT return the count /without/ the terminating null character - // but WM_GETTEXT expects the buffer size handed to it to /include/ the terminating null character - n := C.getWindowTextLen(hwnd) - buf := make([]uint16, int(n+1)) - C.getWindowText(hwnd, C.WPARAM(n), - C.LPWSTR(unsafe.Pointer(&buf[0]))) - return syscall.UTF16ToString(buf) -} - -func wstrToString(wstr *C.WCHAR) string { - n := C.wcslen((*C.wchar_t)(unsafe.Pointer(wstr))) - xbuf := &reflect.SliceHeader{ - Data: uintptr(unsafe.Pointer(wstr)), - Len: int(n + 1), - Cap: int(n + 1), - } - buf := (*[]uint16)(unsafe.Pointer(xbuf)) - return syscall.UTF16ToString(*buf) -} |
