Files
supersonic/backend/windows/taskbar_buttons_unsupported.go
T

10 lines
198 B
Go

//go:build !windows
package windows
import "errors"
func InitializeTaskbarButtons(hwnd uintptr, callback func(TaskbarButton)) error {
return errors.New("taskbar buttons unsupported")
}