8 lines
120 B
Go
8 lines
120 B
Go
//go:build !windows
|
|
|
|
package ole
|
|
|
|
// errstr converts error code to string.
|
|
func errstr(errno int) string {
|
|
return ""
|
|
}
|