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