mirror of
https://github.com/netbirdio/netbird.git
synced 2026-04-18 16:26:38 +00:00
19 lines
336 B
Go
19 lines
336 B
Go
//go:build freebsd
|
|
|
|
package server
|
|
|
|
import (
|
|
"fmt"
|
|
"image"
|
|
)
|
|
|
|
func (c *X11Capturer) initSHM() error {
|
|
return fmt.Errorf("SysV SHM not available on this platform")
|
|
}
|
|
|
|
func (c *X11Capturer) captureSHM() (*image.RGBA, error) {
|
|
return nil, fmt.Errorf("SHM capture not available on this platform")
|
|
}
|
|
|
|
func (c *X11Capturer) closeSHM() {}
|