键盘事件监控, from : https://github.com/robotn/gohook.git
Go to file
2019-04-13 13:25:26 -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 add example and update code style 2019-02-19 11:32:48 -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 Made the library Asyncronous (#2) 2019-02-19 10:31:25 -04:00
appveyor.yml update code and CI 2019-03-18 13:26:28 -04:00
circle.yml rename circle ci 2018-09-16 20:25:36 -04:00
extern.go Add lock, Fixed fatal error: concurrent map writes 2019-03-15 13:45:47 -04:00
go.mod replace all import and gofmt code 2019-02-19 10:34:55 -04:00
hook.go update code and CI 2019-03-18 13:26:28 -04:00
LICENSE Initial commit 2017-01-21 16:52:05 +08:00
README.md add example and update code style 2019-02-19 11:32:48 -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(ev)
	}
}

Based on libuiohook.