mirror of
https://github.com/sliverarmory/reflektor
synced 2026-08-25 09:14:48 +00:00
11 lines
273 B
Go
11 lines
273 B
Go
//go:build linux && !android && arm && arm.7
|
|
|
|
package bofloader
|
|
|
|
import "github.com/ebitengine/purego"
|
|
|
|
//go:uintptrescapes
|
|
func invokeEntry(entry, argumentAddress uintptr, argumentLength int32) {
|
|
purego.SyscallN(entry, argumentAddress, uintptr(uint32(argumentLength)))
|
|
}
|