subsonic-tui/vendor/github.com/ebitengine/purego/dlerror.go
Sagi Dayan 48661005be
initial commit
Signed-off-by: Sagi Dayan <sagidayan@gmail.com>
2024-09-01 16:30:56 +03:00

15 lines
311 B
Go

// SPDX-License-Identifier: Apache-2.0
// SPDX-FileCopyrightText: 2023 The Ebitengine Authors
//go:build darwin || freebsd || linux
package purego
// Dlerror represents an error value returned from Dlopen, Dlsym, or Dlclose.
type Dlerror struct {
s string
}
func (e Dlerror) Error() string {
return e.s
}