You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
mxml/www/docfiles/mxmlSaveString.html

68 lines
2.5 KiB

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" "http://www.w3.org/TR/REC-html40/loose.dtd">
<HTML>
<HEAD>
<TITLE>Mini-XML Programmers Manual, Version 2.3</TITLE>
<META NAME="author" CONTENT="Michael R. Sweet">
<META NAME="copyright" CONTENT="Copyright 2003-2007">
<META HTTP-EQUIV="Content-Type" CONTENT="text/html; CHARSET=iso-iso-8859-1">
<LINK REL="Start" HREF="index.html">
<LINK REL="Contents" HREF="index.html">
<LINK REL="Prev" HREF="mxmlSaveFile.html">
<LINK REL="Next" HREF="MiniXML23mxmlSetCDATA.html">
<STYLE TYPE="text/css"><!--
BODY { font-family: sans-serif }
H1 { font-family: sans-serif }
H2 { font-family: sans-serif }
H3 { font-family: sans-serif }
H4 { font-family: sans-serif }
H5 { font-family: sans-serif }
H6 { font-family: sans-serif }
SUB { font-size: smaller }
SUP { font-size: smaller }
PRE { font-family: monospace }
A { text-decoration: none }
--></STYLE>
</HEAD>
<BODY>
<A HREF="index.html">Contents</A>
<A HREF="mxmlSaveFile.html">Previous</A>
<A HREF="MiniXML23mxmlSetCDATA.html">Next</A>
<HR NOSHADE>
<H3 class="title"><A name="mxmlSaveString">mxmlSaveString()</A></H3>
<H4>Description</H4>
<P>Save an XML node tree to a string.</P>
<P>This function returns the total number of bytes that would be
required for the string but only copies (bufsize - 1) characters into
the specified buffer.</P>
<P>The callback argument specifies a function that returns a whitespace
string or NULL before and after each element. If MXML_NO_CALLBACK is
specified, whitespace will only be added before MXML_TEXT nodes with
leading whitespace and before attribute names inside opening element
tags.</P>
<H4>Syntax</H4>
<P> <TT>int
<BR> mxmlSaveString( <A href="mxmlnodet.html#mxml_node_t">mxml_node_t</A>
* node, char * buffer, int bufsize, <A href="mxmlsavecbt.html#mxml_save_cb_t">
mxml_save_cb_t</A> cb);</TT></P>
<H4>Arguments</H4>
<DIV class="table">
<TABLE align="center" border="1" cellpadding="5" cellspacing="0" summary="Arguments"
width="80%"><THEAD></THEAD>
<TR><TH>Name</TH><TH>Description</TH></TR>
<TBODY></TBODY>
<TR><TD><TT>node</TT></TD><TD>Node to write</TD></TR>
<TR><TD><TT>buffer</TT></TD><TD>String buffer</TD></TR>
<TR><TD><TT>bufsize</TT></TD><TD>Size of string buffer</TD></TR>
<TR><TD><TT>cb</TT></TD><TD>Whitespace callback or MXML_NO_CALLBACK</TD></TR>
</TABLE>
</DIV>
<H4>Returns</H4>
<P>Size of string</P>
<!-- NEW PAGE -->
<HR NOSHADE>
<A HREF="index.html">Contents</A>
<A HREF="mxmlSaveFile.html">Previous</A>
<A HREF="MiniXML23mxmlSetCDATA.html">Next</A>
</BODY>
</HTML>