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

15 lines
248 B
Go

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
}