//go:build !windows package win32 // GetWindowSize returns (0, 0, false) on non-Windows platforms. func GetWindowSize(hwnd uintptr) (width, height int, ok bool) { return 0, 0, false }