mirror of
https://github.com/lwch/natpass.git
synced 2024-04-21 12:41:54 +00:00
24 lines
411 B
Go
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
|
|
}
|