zenity/internal/zencmd/window_windows.go
2022-06-28 14:27:12 +01:00

19 lines
307 B
Go

package zencmd
import (
"strconv"
"golang.org/x/sys/windows"
)
// ParseWindowId is internal.
func ParseWindowId(id string) windows.HWND {
hwnd, _ := strconv.ParseUint(id, 0, 64)
return windows.HWND(uintptr(hwnd))
}
// GetParentWindowId is internal.
func GetParentWindowId(pid int) int {
return 0
}