键盘事件监控, from : https://github.com/robotn/gohook.git
Go to file
2019-10-10 13:11:32 -04:00
chan update code use c99 and update code style 2019-02-19 11:03:09 -04:00
event add center mouse and update code style 2019-03-05 15:29:54 -04:00
example update go hook example docs 2019-10-10 13:11:32 -04:00
hook Fixed #3 mouse is_drag error on x11 2019-04-13 13:25:26 -04:00
test add example and update code style 2019-02-19 11:32:48 -04:00
.gitignore update .gitignore 2019-04-13 13:26:57 -04:00
appveyor.yml update appveyor go version 2019-09-27 13:09:41 -04:00
circle.yml rename circle ci 2018-09-16 20:25:36 -04:00
extern.go update go send json.Unmarshal error log 2019-06-22 12:58:07 -04:00
go.mod replace all import and gofmt code 2019-02-19 10:34:55 -04:00
hook.go add get gohook version code 2019-08-27 12:51:46 -04:00
LICENSE Initial commit 2017-01-21 16:52:05 +08:00
README.md update example and readme code 2019-07-28 14:12:01 -04:00
tables.go refactor code, fixed bug and api 2019-02-20 11:07:25 -04:00

gohook

CircleCI Status Appveyor Go Report Card GoDoc

package main

import (
	"fmt"

	"github.com/robotn/gohook"
)

func main() {
	EvChan := hook.Start()
	defer hook.End()
	
	for ev := range EvChan {
		fmt.Println("hook: ", ev)
	}
}

Based on libuiohook.