10 lines
270 B
Go
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
|
|
}
|