You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
ntool/nsys/clipboard/util_windows.go

16 lines
239 B
Go

//go:build windows
package clipboard
// GetWriterBin program name
func GetWriterBin() string {
return WriterOnWin
}
// GetReaderBin program name
func GetReaderBin() string {
return ReaderOnWin
}
func available() bool { return true }