mirror of
https://github.com/safing/portbase
synced 2025-09-01 18:19:57 +00:00
15 lines
438 B
Go
15 lines
438 B
Go
//+build !windows
|
|
|
|
package osdetail
|
|
|
|
// GetBinaryNameFromSystem queries the operating system for a human readable
|
|
// name for the given binary path.
|
|
func GetBinaryNameFromSystem(path string) (string, error) {
|
|
return "", ErrNotSupported
|
|
}
|
|
|
|
// GetBinaryIconFromSystem queries the operating system for the associated icon
|
|
// for a given binary path.
|
|
func GetBinaryIconFromSystem(path string) (string, error) {
|
|
return "", ErrNotSupported
|
|
}
|