zenity/internal/zenutil/window_windows.go

15 lines
248 B
Go
Raw Normal View History

2022-06-09 08:35:02 -04:00
package zenutil
import "strconv"
// ParseWindowId is internal.
func ParseWindowId(id string) uintptr {
hwnd, _ := strconv.ParseUint(id, 0, 64)
return uintptr(hwnd)
}
// GetParentWindowId is internal.
func GetParentWindowId() int {
return 0
}