Archived
2
0

send keysyms in uint64

This commit is contained in:
Miroslav Šedivý
2020-06-15 18:57:28 +02:00
parent 36937a0776
commit 9a6ca9b5b0
5 changed files with 44 additions and 39 deletions

View File

@ -16,9 +16,9 @@ type RemoteManager interface {
Move(x, y int)
Scroll(x, y int)
ButtonDown(code int) error
KeyDown(code int) error
KeyDown(code uint64) error
ButtonUp(code int) error
KeyUp(code int) error
KeyUp(code uint64) error
ReadClipboard() string
WriteClipboard(data string)
ResetKeys()