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

@ -187,7 +187,7 @@ func (manager *RemoteManager) ButtonDown(code int) error {
return xorg.ButtonDown(code)
}
func (manager *RemoteManager) KeyDown(code int) error {
func (manager *RemoteManager) KeyDown(code uint64) error {
return xorg.KeyDown(code)
}
@ -195,7 +195,7 @@ func (manager *RemoteManager) ButtonUp(code int) error {
return xorg.ButtonUp(code)
}
func (manager *RemoteManager) KeyUp(code int) error {
func (manager *RemoteManager) KeyUp(code uint64) error {
return xorg.KeyUp(code)
}