键盘事件监控, from : https://github.com/robotn/gohook.git
Go to file
2020-05-20 10:37:43 +08:00
.github/workflows update appveyo.yml and go.yml to go1.14 2020-02-27 11:04:21 -04:00
chan sched_yield support for non-POSIX windows gcc 2020-05-20 10:37:43 +08:00
event add center mouse and update code style 2019-03-05 15:29:54 -04:00
example update hook example 2019-10-31 11:08:50 -04:00
hook add capslock key support when darwin 2020-02-24 11:49:40 -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.yml 2020-04-11 13:21:14 -04:00
circle.yml update circle.yml 2020-02-22 12:11:56 -04:00
extern.go update go send json.Unmarshal error log 2019-06-22 12:58:07 -04:00
go.mod add hook test code support 2020-02-22 12:09:45 -04:00
go.sum add hook test code support 2020-02-22 12:09:45 -04:00
hook_test.go add keycode test support 2020-02-23 11:02:58 -04:00
hook.go update version and godoc 2020-05-19 11:28:03 -04:00
keycode.go add robotgo keycode to gohook 2020-05-19 11:01:25 -04:00
LICENSE Initial commit 2017-01-21 16:52:05 +08:00
README.md Update README.md, Add more CI badge 2019-12-07 14:27:27 -04:00
tables.go refactor code, fixed bug and api 2019-02-20 11:07:25 -04:00

gohook

Build Status 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.