Files
2022-05-10 19:54:49 +08:00

17 lines
318 B
Go

package process
import (
"syscall"
"github.com/lwch/logging"
"github.com/lwch/natpass/code/client/rule/vnc/define"
)
// CADEvent handle ctrl+alt+del event
func (p *Process) CADEvent() {
ok, _, err := syscall.Syscall(define.FuncSendSAS, 1, 0, 0, 0)
if ok == 0 {
logging.Error("send sas failed: %v", err)
}
}