mirror of
https://github.com/D3Ext/Hooka
synced 2026-06-08 10:49:57 +00:00
10 lines
164 B
Go
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...)
|
|
}
|
|
|
|
|