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

12 lines
224 B
Go

//go:build !windows
package winpwn
func ListLoadedModules(pid uint32) (map[string]uintptr, error) {
return nil, errWindowsOnly
}
func SymbolVA(pid uint32, dll, name string) (uintptr, error) {
return 0, errWindowsOnly
}