summaryrefslogtreecommitdiff
path: root/pango/pango-run-private.h
diff options
context:
space:
mode:
Diffstat (limited to 'pango/pango-run-private.h')
-rw-r--r--pango/pango-run-private.h18
1 files changed, 18 insertions, 0 deletions
diff --git a/pango/pango-run-private.h b/pango/pango-run-private.h
new file mode 100644
index 00000000..09d27edf
--- /dev/null
+++ b/pango/pango-run-private.h
@@ -0,0 +1,18 @@
+#pragma once
+
+#include "config.h"
+
+#include "pango-run.h"
+#include "pango-glyph-item.h"
+#include "pango-item-private.h"
+
+struct _PangoRun
+{
+ PangoGlyphItem glyph_item;
+};
+
+static inline PangoGlyphItem *
+pango_run_get_glyph_item (PangoRun *run)
+{
+ return &run->glyph_item;
+}