mirror of
https://github.com/libexpat/libexpat.git
synced 2025-04-05 21:24:59 +00:00
doc: Document that a call to XML_FreeContentModel can be done at a later time from outside the element declaration handler (#575)
This commit is contained in:
parent
866a8617e4
commit
80553ff825
2 changed files with 9 additions and 6 deletions
|
@ -1808,10 +1808,11 @@ struct XML_cp {
|
|||
</pre>
|
||||
<p>Sets a handler for element declarations in a DTD. The handler gets
|
||||
called with the name of the element in the declaration and a pointer
|
||||
to a structure that contains the element model. It is the
|
||||
application's responsibility to free this data structure using
|
||||
<code><a href="#XML_FreeContentModel"
|
||||
>XML_FreeContentModel</a></code>.</p>
|
||||
to a structure that contains the element model. It's the user code's
|
||||
responsibility to free model when finished with it. See <code>
|
||||
<a href="#XML_FreeContentModel">XML_FreeContentModel</a></code>.
|
||||
There is no need to free the model from the handler, it can be kept
|
||||
around and freed at a later stage.</p>
|
||||
|
||||
<p>The <code>model</code> argument is the root of a tree of
|
||||
<code>XML_Content</code> nodes. If <code>type</code> equals
|
||||
|
|
|
@ -174,8 +174,10 @@ struct XML_cp {
|
|||
};
|
||||
|
||||
/* This is called for an element declaration. See above for
|
||||
description of the model argument. It's the caller's responsibility
|
||||
to free model when finished with it.
|
||||
description of the model argument. It's the user code's responsibility
|
||||
to free model when finished with it. See XML_FreeContentModel.
|
||||
There is no need to free the model from the handler, it can be kept
|
||||
around and freed at a later stage.
|
||||
*/
|
||||
typedef void(XMLCALL *XML_ElementDeclHandler)(void *userData,
|
||||
const XML_Char *name,
|
||||
|
|
Loading…
Add table
Reference in a new issue