
Functions | |
| static int | vlclua_xml_create_reader (lua_State *) |
| static int | vlclua_xml_load_catalog (lua_State *) |
| static int | vlclua_xml_add_catalog (lua_State *) |
| static int | vlclua_xml_delete (lua_State *L) |
| static int | vlclua_xml_create (lua_State *L) |
| static int | vlclua_xml_reader_read (lua_State *) |
| static int | vlclua_xml_reader_node_type (lua_State *) |
| static int | vlclua_xml_reader_name (lua_State *) |
| static int | vlclua_xml_reader_value (lua_State *) |
| static int | vlclua_xml_reader_next_attr (lua_State *) |
| static int | vlclua_xml_reader_use_dtd (lua_State *) |
| static int | vlclua_xml_reader_delete (lua_State *L) |
| void | luaopen_xml (lua_State *L) |
Variables | |
| static const luaL_Reg | vlclua_xml_reg [] |
| static const luaL_Reg | vlclua_xml_reader_reg [] |
| void luaopen_xml | ( | lua_State * | L | ) |
References vlclua_xml_create().
Referenced by GetLuaState(), init(), Open_LuaIntf(), Open_LuaSD(), and probe_luascript().
| static int vlclua_xml_add_catalog | ( | lua_State * | L | ) | [static] |
References xml_CatalogAdd.
| static int vlclua_xml_create | ( | lua_State * | L | ) | [static] |
References vlclua_get_this(), vlclua_xml_delete(), vlclua_xml_reg, and xml_Create.
Referenced by luaopen_xml().
| static int vlclua_xml_create_reader | ( | lua_State * | L | ) | [static] |
References p_stream, vlclua_xml_reader_delete(), vlclua_xml_reader_reg, and xml_ReaderCreate.
| static int vlclua_xml_delete | ( | lua_State * | L | ) | [static] |
| static int vlclua_xml_load_catalog | ( | lua_State * | L | ) | [static] |
References xml_CatalogLoad.
| static int vlclua_xml_reader_delete | ( | lua_State * | L | ) | [static] |
| static int vlclua_xml_reader_name | ( | lua_State * | L | ) | [static] |
References xml_ReaderName.
| static int vlclua_xml_reader_next_attr | ( | lua_State * | L | ) | [static] |
References xml_ReaderNextAttr.
| static int vlclua_xml_reader_node_type | ( | lua_State * | L | ) | [static] |
References ppsz_type, and xml_ReaderNodeType.
| static int vlclua_xml_reader_read | ( | lua_State * | L | ) | [static] |
References xml_ReaderRead.
| static int vlclua_xml_reader_use_dtd | ( | lua_State * | L | ) | [static] |
References xml_ReaderUseDTD.
| static int vlclua_xml_reader_value | ( | lua_State * | L | ) | [static] |
References xml_ReaderValue.
const luaL_Reg vlclua_xml_reader_reg[] [static] |
Initial value:
{
{ "read", vlclua_xml_reader_read },
{ "node_type", vlclua_xml_reader_node_type },
{ "name", vlclua_xml_reader_name },
{ "value", vlclua_xml_reader_value },
{ "next_attr", vlclua_xml_reader_next_attr },
{ "use_dtd", vlclua_xml_reader_use_dtd },
{ NULL, NULL }
}
Referenced by vlclua_xml_create_reader().
const luaL_Reg vlclua_xml_reg[] [static] |
Initial value:
{
{ "create_reader", vlclua_xml_create_reader },
{ "load_catalog", vlclua_xml_load_catalog },
{ "add_catalog", vlclua_xml_add_catalog },
{ NULL, NULL }
}
Referenced by vlclua_xml_create().
1.5.6