aboutsummaryrefslogtreecommitdiffstats
path: root/common/rfb/qemuTypes.h
diff options
context:
space:
mode:
authorPierre Ossman <ossman@cendio.se>2017-05-16 14:30:38 +0200
committerPierre Ossman <ossman@cendio.se>2017-08-28 13:54:30 +0200
commit5ae282135f982505fab655d4f597e7329fb8b0d1 (patch)
treefe4b2315735c1db49be288fee04dcb4674296364 /common/rfb/qemuTypes.h
parentc719e4a0c9e1e3e5b7d22aa42cdaedda3cb06803 (diff)
downloadtigervnc-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/qemuTypes.h')
-rw-r--r--common/rfb/qemuTypes.h25
1 files changed, 25 insertions, 0 deletions
diff --git a/common/rfb/qemuTypes.h b/common/rfb/qemuTypes.h
new file mode 100644
index 00000000..6a67f781
--- /dev/null
+++ b/common/rfb/qemuTypes.h
@@ -0,0 +1,25 @@
+/* Copyright 2017 Pierre Ossman for Cendio AB
+ *
+ * This is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation; either version 2 of the License, or
+ * (at your option) any later version.
+ *
+ * This software is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this software; if not, write to the Free Software
+ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307,
+ * USA.
+ */
+#ifndef __RFB_QEMUTYPES_H__
+#define __RFB_QEMUTYPES_H__
+
+namespace rfb {
+ const int qemuExtendedKeyEvent = 0;
+ const int qemuAudio = 1;
+}
+#endif