diff options
Diffstat (limited to 'src/Dom/Dom.h')
| -rw-r--r-- | src/Dom/Dom.h | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/src/Dom/Dom.h b/src/Dom/Dom.h new file mode 100644 index 0000000..06bd1ff --- /dev/null +++ b/src/Dom/Dom.h @@ -0,0 +1,10 @@ +#ifndef YAPSSG_DOM_H +#define YAPSSG_DOM_H + +#include <libxml/tree.h> +#include <lua.h> + +void dom_push_page(lua_State *lua, const xmlNode *root); +xmlNodePtr dom_page_from_lua(lua_State *lua, int table_index); + +#endif |
