gohook/keycode.go

23 lines
780 B
Go
Raw Normal View History

2020-05-19 23:01:25 +08:00
// Copyright 2016 The go-vgo Project Developers. See the COPYRIGHT
// file at the top-level directory of this distribution and at
// https://github.com/go-vgo/robotgo/blob/master/LICENSE
//
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
// option. This file may not be copied, modified, or distributed
// except according to those terms.
package hook
2021-11-24 04:19:46 +08:00
import "github.com/vcaesar/keycode"
2020-05-19 23:01:25 +08:00
2023-03-03 09:37:06 +08:00
// MouseMap defines the robotgo hook mouse's code map
2021-11-24 04:19:46 +08:00
var MouseMap = keycode.MouseMap
2020-05-19 23:01:25 +08:00
2023-03-03 09:37:06 +08:00
// Keycode defines the robotgo hook key's code map
2021-11-24 04:19:46 +08:00
var Keycode = keycode.Keycode
2023-03-03 09:37:06 +08:00
// Special defines the special key map
2021-11-24 04:19:46 +08:00
var Special = keycode.Special