//go:build !windows package win32 // SetAutoStart is a no-op on non-Windows platforms. func SetAutoStart(enable bool) error { return nil } // IsAutoStartEnabled always returns false on non-Windows platforms. func IsAutoStartEnabled() bool { return false }