|
#define | MUPNP_XML_INDENT_STRING " " |
|
#define | MUPNP_XML_VERSION_HEADER "<?xml version=\"1.0\" encoding=\"utf-8\"?>" |
|
#define | MUPNP_XML_CONTENT_TYPE "text/xml; charset=\"utf-8\"" |
|
#define | MUPNP_XML_CONTENT_LF "\n" |
|
#define | mupnp_xml_attributelist_clear(attrList) |
|
#define | mupnp_xml_attributelist_size(attrList) |
|
#define | mupnp_xml_attributelist_gets(attrList) |
|
#define | mupnp_xml_attributelist_add(attrList, attr) |
|
#define | mupnp_xml_attribute_next(attr) |
|
#define | mupnp_xml_attribute_remove(attr) |
|
#define | mupnp_xml_nodelist_clear(nodeList) |
|
#define | mupnp_xml_nodelist_size(nodeList) |
|
#define | mupnp_xml_nodelist_gets(nodeList) |
|
#define | mupnp_xml_nodelist_add(nodeList, node) |
|
#define | mupnp_xml_nodelist_get(nodeList, name) |
|
#define | mupnp_xml_node_next(node) |
|
#define | mupnp_xml_node_remove(node) |
|
#define | mupnp_xml_node_setname(node, nodename) |
|
#define | mupnp_xml_node_getname(node) |
|
#define | mupnp_xml_node_isname(node, nodename) |
|
#define | mupnp_xml_node_setvalue(node, nodevalue) |
|
#define | mupnp_xml_node_setintvalue(node, nodevalue) |
|
#define | mupnp_xml_node_setlongvalue(node, nodevalue) |
|
#define | mupnp_xml_node_setnvalue(node, nodevalue, nodevaluelen) |
|
#define | mupnp_xml_node_addvalue(node, nodevalue) |
|
#define | mupnp_xml_node_naddvalue(node, nodevalue, len) |
|
#define | mupnp_xml_node_getvalue(node) |
|
#define | mupnp_xml_node_getintvalue(node) |
|
#define | mupnp_xml_node_getlongvalue(node) |
|
#define | mupnp_xml_node_setparentnode(node, pnode) |
|
#define | mupnp_xml_node_getparentnode(node) |
|
#define | mupnp_xml_node_getchildnodelist(node) |
|
#define | mupnp_xml_node_getchildnodeintvalue(node, name) |
|
#define | mupnp_xml_node_getchildnodelongvalue(node, name) |
|
#define | mupnp_xml_node_setuserdata(node, data) |
|
#define | mupnp_xml_node_getuserdata(node) |
|
#define | mupnp_xml_node_setuserdatadestructor(node, func) |
|
#define | mupnp_xml_node_getchildnodes(node) |
|
#define | mupnp_xml_node_haschildnodes(node) |
|
#define | mupnp_xml_node_getchildnode(node, name) |
|
#define | mupnp_xml_node_getchildnodebyname(node, name) |
|
#define | mupnp_xml_node_getchildnodebyxpath(node, xpath) |
|
#define | mupnp_xml_node_getattributes(node) |
|
#define | mupnp_xml_node_getattribute(node, name) |
|
#define | mupnp_xml_node_addattribute(node, attr) |
|
#define | mupnp_xml_node_setattribute(node, name, value) |
|
#define | mupnp_xml_node_getattributevalue(node, name) |
|
#define | mupnp_xml_node_setnamespace(node, ns, value) |
|
|
mUpnpXmlAttributeList * | mupnp_xml_attributelist_new (void) |
|
void | mupnp_xml_attributelist_delete (mUpnpXmlAttributeList *attrList) |
|
void | mupnp_xml_attributelist_set (mUpnpXmlAttributeList *attrList, const char *name, const char *value) |
|
mUpnpXmlAttribute * | mupnp_xml_attributelist_get (mUpnpXmlAttributeList *attrList, const char *name) |
|
const char * | mupnp_xml_attributelist_getvalue (mUpnpXmlAttributeList *attrList, const char *name) |
|
mUpnpXmlAttribute * | mupnp_xml_attribute_new (void) |
|
void | mupnp_xml_attribute_delete (mUpnpXmlAttribute *attr) |
|
void | mupnp_xml_attribute_setname (mUpnpXmlAttribute *attr, const char *name) |
|
const char * | mupnp_xml_attribute_getname (mUpnpXmlAttribute *attr) |
|
bool | mupnp_xml_attribute_isname (mUpnpXmlAttribute *attr, const char *name) |
|
void | mupnp_xml_attribute_setvalue (mUpnpXmlAttribute *attr, const char *value) |
|
const char * | mupnp_xml_attribute_getvalue (mUpnpXmlAttribute *attr) |
|
mUpnpXmlNodeList * | mupnp_xml_nodelist_new (void) |
|
void | mupnp_xml_nodelist_delete (mUpnpXmlNodeList *nodeList) |
|
mUpnpXmlNode * | mupnp_xml_nodelist_getbyname (mUpnpXmlNodeList *nodeList, const char *name) |
|
mUpnpXmlNode * | mupnp_xml_nodelist_getbyxpath (mUpnpXmlNodeList *nodeList, const char *xpath) |
|
mUpnpXmlNode * | mupnp_xml_node_new (void) |
|
void | mupnp_xml_node_delete (mUpnpXmlNode *node) |
|
mUpnpXmlNode * | mupnp_xml_node_getrootnode (mUpnpXmlNode *node) |
|
void | mupnp_xml_node_addchildnode (mUpnpXmlNode *node, mUpnpXmlNode *cnode) |
|
void | mupnp_xml_node_setchildnode (mUpnpXmlNode *node, const char *name, const char *value) |
|
bool | mupnp_xml_node_removechildnode (mUpnpXmlNode *node, const char *name) |
|
const char * | mupnp_xml_node_getchildnodevalue (mUpnpXmlNode *node, const char *name) |
|
mUpnpXmlNode * | mupnp_xml_node_getchildnodewithnamespace (mUpnpXmlNode *node, const char *name, const char *ns, bool ignoreNs) |
|
bool | mupnp_xml_node_removeattribute (mUpnpXmlNode *node, const char *name) |
|
char * | mupnp_xml_node_tostring (mUpnpXmlNode *node, bool withChildNode, mUpnpString *str) |
|
void | mupnp_xml_node_print (mUpnpXmlNode *node) |
|
void | mupnp_xml_node_copy (mUpnpXmlNode *dstNode, mUpnpXmlNode *srcNode) |
|
mUpnpXmlParser * | mupnp_xml_parser_new (void) |
|
void | mupnp_xml_parser_delete (mUpnpXmlParser *parser) |
|
bool | mupnp_xml_parse (mUpnpXmlParser *parser, mUpnpXmlNodeList *nodeList, const char *data, size_t len) |
|
char * | mupnp_xml_escapechars (mUpnpString *str) |
|
char * | mupnp_xml_unescapechars (mUpnpString *str) |
|