diff options
author | Koichiro IWAO <meta@vmeta.jp> | 2018-10-25 15:52:40 +0900 |
---|---|---|
committer | Koichiro IWAO <meta@vmeta.jp> | 2018-10-25 16:00:53 +0900 |
commit | c15cd91198b7393cf7c9d2576f1762a22acc017f (patch) | |
tree | 364bfee513b405fb8d8dafe18ab1b1b409e0a497 /common | |
parent | c2ade7a1f7318527bd8cb5aedc4ed127c5546c94 (diff) | |
download | xrdp-proprietary-c15cd91198b7393cf7c9d2576f1762a22acc017f.tar.gz xrdp-proprietary-c15cd91198b7393cf7c9d2576f1762a22acc017f.zip |
common: add constants of glyph support level
Diffstat (limited to 'common')
-rw-r--r-- | common/xrdp_constants.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/common/xrdp_constants.h b/common/xrdp_constants.h index 4a6d2c27..fec882a4 100644 --- a/common/xrdp_constants.h +++ b/common/xrdp_constants.h @@ -588,6 +588,12 @@ #define KBD_FLAG_CAPITAL 0x0004 #define TS_SYNC_KANA_LOCK 0x0008 +/* Glyph Cache Capability Set: GlyphSupportLevel (MS-RDPBCGR 2.2.7.1.8) */ +#define GLYPH_SUPPORT_NONE 0x0000 +#define GLYPH_SUPPORT_PARTIAL 0x0001 +#define GLYPH_SUPPORT_FULL 0x0002 +#define GLYPH_SUPPORT_ENCODE 0x0003 + /****************************************************************************** * * Constants come from other Microsoft products |