8 lines
253 B
Go
8 lines
253 B
Go
//go:build !windows
|
|
|
|
package main
|
|
|
|
// virtualScreenBounds is Windows-only; elsewhere we cannot tell, and the caller
|
|
// treats "cannot tell" as "trust the saved position".
|
|
func virtualScreenBounds() (x, y, w, h int, ok bool) { return 0, 0, 0, 0, false }
|