Files
go_pwner/imported_libs_other.go
2026-07-18 21:37:15 +03:00

10 lines
270 B
Go

//go:build !windows
package winpwn
// ImportedLibs requires GOOS=windows: resolving a live image base means
// actually loading the DLL (LoadLibrary), which only exists on Windows.
func (p *PEFile) ImportedLibs() ([]ImportedLib, error) {
return nil, errWindowsOnly
}