summaryrefslogtreecommitdiffhomepage
path: root/src/internal
diff options
context:
space:
mode:
authormidipix <writeonce@midipix.org>2016-08-07 09:16:47 -0400
committermidipix <writeonce@midipix.org>2016-08-10 21:47:29 -0400
commit92a5107f9f3c4259b928795dc98084e88eb333fa (patch)
tree1d90920751ddb11f423590e6841f4f791f33cefe /src/internal
parent5ee033f002dee29f1a1395a1b3838089a3e18fa6 (diff)
downloadptycon-92a5107f9f3c4259b928795dc98084e88eb333fa.tar.bz2
ptycon-92a5107f9f3c4259b928795dc98084e88eb333fa.tar.xz
bridge: added initial virtual key-code translation table.
Diffstat (limited to 'src/internal')
-rw-r--r--src/internal/ptycon_bridge_impl.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/internal/ptycon_bridge_impl.h b/src/internal/ptycon_bridge_impl.h
index 0432cde..51ce93e 100644
--- a/src/internal/ptycon_bridge_impl.h
+++ b/src/internal/ptycon_bridge_impl.h
@@ -31,6 +31,11 @@ struct ptyc_term_input {
unsigned char stream [PTYC_RAW_EVENTS*4];
};
+struct ptyc_vkcode {
+ const unsigned char const * mbstr;
+ uint16_t mblen;
+};
+
struct ptyc_term_ctx;
typedef void * __fastcall ptyc_term_handler (struct ptyc_term_ctx *);