diff options
author | Frederic Peters <fpeters@entrouvert.com> | 2005-01-01 18:53:30 +0000 |
---|---|---|
committer | Frederic Peters <fpeters@entrouvert.com> | 2005-01-01 18:53:30 +0000 |
commit | 9b444f779618d55bceceb06d19bceeefe9963fcf (patch) | |
tree | 8cf4e76f766a73ced179a7de9b4fcab0b0653ed3 /lasso/xml/xml.h | |
parent | f40931b78a4cba76c7109395f64a573c2ae447f9 (diff) | |
download | lasso-9b444f779618d55bceceb06d19bceeefe9963fcf.tar.gz lasso-9b444f779618d55bceceb06d19bceeefe9963fcf.tar.xz lasso-9b444f779618d55bceceb06d19bceeefe9963fcf.zip |
Removed second and third parameters of lasso_node_dump since @encoding is
always UTF-8 and @format is always to indent XML in lasso dumps.
Diffstat (limited to 'lasso/xml/xml.h')
-rw-r--r-- | lasso/xml/xml.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lasso/xml/xml.h b/lasso/xml/xml.h index b9c55bdb..a5b29d9c 100644 --- a/lasso/xml/xml.h +++ b/lasso/xml/xml.h @@ -100,7 +100,7 @@ LASSO_EXPORT LassoNode* lasso_node_new_from_soap(const char *soap); LASSO_EXPORT LassoNode* lasso_node_new_from_xmlNode(xmlNode* node); LASSO_EXPORT void lasso_node_destroy(LassoNode *node); -LASSO_EXPORT char* lasso_node_dump(LassoNode *node, const char *encoding, int format); +LASSO_EXPORT char* lasso_node_dump(LassoNode *node); LASSO_EXPORT char* lasso_node_export_to_base64(LassoNode *node); LASSO_EXPORT char* lasso_node_export_to_query(LassoNode *node, |