10 lines
198 B
Go
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")
|
|
}
|