diff options
author | Pierre Ossman <ossman@cendio.se> | 2017-05-16 14:30:38 +0200 |
---|---|---|
committer | Pierre Ossman <ossman@cendio.se> | 2017-08-28 13:54:30 +0200 |
commit | 5ae282135f982505fab655d4f597e7329fb8b0d1 (patch) | |
tree | fe4b2315735c1db49be288fee04dcb4674296364 /common/rfb/CMsgHandler.cxx | |
parent | c719e4a0c9e1e3e5b7d22aa42cdaedda3cb06803 (diff) | |
download | tigervnc-5ae282135f982505fab655d4f597e7329fb8b0d1.tar.gz tigervnc-5ae282135f982505fab655d4f597e7329fb8b0d1.zip |
Basic support for QEMU Extended Key Events
This adds the basic infrastructure and handshake for the QEMU
Extended Key Events extension. No viewer or server makes use of
the extra functionality yet though.
Diffstat (limited to 'common/rfb/CMsgHandler.cxx')
-rw-r--r-- | common/rfb/CMsgHandler.cxx | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/common/rfb/CMsgHandler.cxx b/common/rfb/CMsgHandler.cxx index 74c7bf92..b89bc184 100644 --- a/common/rfb/CMsgHandler.cxx +++ b/common/rfb/CMsgHandler.cxx @@ -75,6 +75,11 @@ void CMsgHandler::endOfContinuousUpdates() cp.supportsContinuousUpdates = true; } +void CMsgHandler::supportsQEMUKeyEvent() +{ + cp.supportsQEMUKeyEvent = true; +} + void CMsgHandler::framebufferUpdateStart() { } |