16 lines
292 B
Go
16 lines
292 B
Go
//go:build !windows
|
|||
|
|
|
||
|
|
package capture
|
||
|
|
|
||
|
|
import (
|
||
|
|
"errors"
|
||
|
|
|
||
|
|
"tea.chunkbyte.com/kato/go-worm/lib/models"
|
||
|
|
)
|
||
|
|
|
||
|
|
func CaptureMonitor(index int, format string, quality int) (models.CapturedImage, error) {
|
||
|
|
return models.CapturedImage{}, errors.New("capture helper is windows-only")
|
||
|
|
}
|
||
|
|
|
||
|
|
func Stop() {}
|