summaryrefslogtreecommitdiff
path: root/src/ring.cc
diff options
context:
space:
mode:
authorChristian Persch <chpe@src.gnome.org>2018-04-23 20:51:18 +0200
committerChristian Persch <chpe@src.gnome.org>2018-04-23 20:51:18 +0200
commitc3755f9a9dcc8a41b1bf9a90e11f0f69ca768d98 (patch)
tree97b91744b62635ed218e0f0b45908b25d85f4b97 /src/ring.cc
parent728684cd7db14960ba8cc9aa631163dea1c512c2 (diff)
downloadvte-c3755f9a9dcc8a41b1bf9a90e11f0f69ca768d98.tar.gz
ring: Move some types to ring.cc
These types are only used internally by the ring and only in this one file, so there is no need to put them into the header.
Diffstat (limited to 'src/ring.cc')
-rw-r--r--src/ring.cc5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/ring.cc b/src/ring.cc
index 55b61aa6..449e525a 100644
--- a/src/ring.cc
+++ b/src/ring.cc
@@ -25,6 +25,11 @@
#include <string.h>
+typedef struct _VteCellAttrChange {
+ gsize text_end_offset; /* offset of first character no longer using this attr */
+ VteStreamCellAttr attr;
+} VteCellAttrChange;
+
/*
* VteRing: A buffer ring
*/