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.
|
2022-06-16 20:55:02 -04:00
|
|
|
func GetParentWindowId(pid int) int {
|
2022-06-09 08:35:02 -04:00
|
|
|
return 0
|
|
|
|
}
|