diff options
author | Tatsuya Kinoshita <tats@debian.org> | 2021-02-06 04:07:40 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-02-06 04:07:40 +0000 |
commit | e66ca9fa4ee8eb9e9370bba0bfa4d2084a300a3e (patch) | |
tree | 759d7d3bd2023845ab491d0f1810c8f278c6b150 /fm.h | |
parent | Update ChangeLog (diff) | |
parent | Clarify inline image setting's wording (diff) | |
download | w3m-e66ca9fa4ee8eb9e9370bba0bfa4d2084a300a3e.tar.gz w3m-e66ca9fa4ee8eb9e9370bba0bfa4d2084a300a3e.zip |
Merge pull request #161 from bptato/master
Improved inline image protocol support
Diffstat (limited to '')
-rw-r--r-- | fm.h | 5 |
1 files changed, 5 insertions, 0 deletions
@@ -312,6 +312,11 @@ extern int REV_LB[]; #define EOL(l) (&(l)->ptr[(l)->length]) #define IS_EOL(p,l) ((p)==&(l)->ptr[(l)->length]) +#define INLINE_IMG_NONE 0 +#define INLINE_IMG_OSC5379 1 +#define INLINE_IMG_SIXEL 2 +#define INLINE_IMG_ITERM2 3 + /* * Types. */ |