zenity/internal/zenutil/window_windows.go
2022-06-17 02:49:07 +01:00

15 lines
255 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(pid int) int {
return 0
}