aboutsummaryrefslogtreecommitdiff
path: root/libtxt/inc
diff options
context:
space:
mode:
authorMarvin Borner2020-11-25 18:31:31 +0100
committerMarvin Borner2020-11-25 18:31:31 +0100
commit9559b77afb343998067a7ef269be3b11654d731f (patch)
tree7974434e327ef49e7c9c1817a09a7bdd87675846 /libtxt/inc
parent0bc77c8c0dbc1737e2909ff5a2d5e5af48b298f7 (diff)
More HTML rendering...
Diffstat (limited to 'libtxt/inc')
-rw-r--r--libtxt/inc/html.h7
1 files changed, 7 insertions, 0 deletions
diff --git a/libtxt/inc/html.h b/libtxt/inc/html.h
index 4eaca0b..c1b29f2 100644
--- a/libtxt/inc/html.h
+++ b/libtxt/inc/html.h
@@ -14,6 +14,13 @@ struct dom {
struct list *children;
};
+struct html_element {
+ u32 x_offset;
+ u32 y_offset;
+ struct dom *dom;
+ struct element *obj;
+};
+
int html_render(struct element *container, char *data, u32 length);
#endif