mirror of
https://github.com/yv1ing/ShotRDP.git
synced 2025-09-16 15:10:57 +08:00
13 lines
175 B
Go
13 lines
175 B
Go
// +build !windows
|
|
|
|
package win
|
|
|
|
import (
|
|
"syscall"
|
|
)
|
|
|
|
func syscall3(trap, nargs, a1, a2, a3 uintptr) uintptr {
|
|
ret, _, _ := syscall.Syscall(trap, a1, a2, a3)
|
|
return ret
|
|
}
|