diff options
Diffstat (limited to 'libtxt/inc/html.h')
-rw-r--r-- | libtxt/inc/html.h | 7 |
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 |