mirror of
https://github.com/xaionaro-go/streamctl.git
synced 2025-10-22 06:59:28 +08:00
19 lines
374 B
Go
19 lines
374 B
Go
//go:build !linux
|
|
// +build !linux
|
|
|
|
package windowmanagerhandler
|
|
|
|
import (
|
|
"context"
|
|
"fmt"
|
|
)
|
|
|
|
type PlatformSpecificWindowManagerHandler struct{}
|
|
type WindowID struct{}
|
|
type PID struct{}
|
|
type UID struct{}
|
|
|
|
func (wmh *WindowManagerHandler) init(context.Context) error {
|
|
return fmt.Errorf("the support of window manager handler for this platform is not implemented, yet")
|
|
}
|