Files
natpass/code/client/rule/vnc/process/process_xx.go
T
2021-11-18 23:17:44 +08:00

24 lines
411 B
Go

//go:build !windows
// +build !windows
package process
import (
"image"
"time"
)
// CreateWorker create worker process
func CreateWorker(name, confDir string, showCursor bool) (*Process, error) {
return nil, ErrNotSupported
}
// Close close process
func (p *Process) Close() {
}
// Capture capture desktop image
func (p *Process) Capture(timeout time.Duration) (*image.RGBA, error) {
return nil, nil
}