Files
D3Ext-Hooka/pkg/hooka/syscall.go
T

10 lines
164 B
Go

package hooka
import "github.com/D3Ext/Hooka/evasion"
func Syscall(callid uint16, argh ...uintptr) (uint32, error) {
return evasion.Syscall(callid, argh...)
}