blob: 06bd1ff1fb29f4f46125729f61f741ae4206a26a (
plain)
1
2
3
4
5
6
7
8
9
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
|