mirror of
https://github.com/wavetermdev/wails.git
synced 2026-08-05 13:53:43 -07:00
[v3 linux] add non-functional activeInstance implementation
This commit is contained in:
@@ -0,0 +1,17 @@
|
||||
//go:build linux
|
||||
|
||||
package single_instance
|
||||
|
||||
/*
|
||||
#cgo CFLAGS:
|
||||
#cgo LDFLAGS:
|
||||
|
||||
*/
|
||||
import "C"
|
||||
import "fmt"
|
||||
|
||||
func (p *Plugin) activeInstance(pid int) error {
|
||||
// C.activateApplicationWithProcessID(C.int(pid))
|
||||
fmt.Println("[linux] activateInstance - not implemented: ", pid)
|
||||
return nil
|
||||
}
|
||||
Reference in New Issue
Block a user