tinyxml2.cfg: Added support for XMLNode::FirstChildElement() and XMLNode::LastChildElement().
This commit is contained in:
parent
cbbd3e7354
commit
686579ee1c
|
@ -19,12 +19,22 @@
|
|||
<define name="XML_NO_TEXT_NODE" value="16"/>
|
||||
<define name="XML_ELEMENT_DEPTH_EXCEEDED" value="17"/>
|
||||
<define name="XML_ERROR_COUNT" value="18"/>
|
||||
<!-- XMLError LoadFile( const char* filename ) -->
|
||||
<!-- XMLError LoadFile( FILE* ) -->
|
||||
<function name="XMLDocument::LoadFile">
|
||||
<!-- XMLError tinyxml2::XMLDocument::LoadFile( const char* filename ) -->
|
||||
<!-- XMLError tinyxml2::XMLDocument::LoadFile( FILE* ) -->
|
||||
<function name="tinyxml2::XMLDocument::LoadFile">
|
||||
<noreturn>false</noreturn>
|
||||
<leak-ignore/>
|
||||
<returnValue type="XMLError"/>
|
||||
<returnValue type="tinyxml2::XMLError"/>
|
||||
<arg nr="1">
|
||||
<not-uninit/>
|
||||
</arg>
|
||||
</function>
|
||||
<!-- const tinyxml2::XMLElement* tinyxml2::XMLNode::FirstChildElement( const char* name ) const -->
|
||||
<!-- const tinyxml2::XMLElement* tinyxml2::XMLNode::LastChildElement( const char* name ) const -->
|
||||
<function name="tinyxml2::XMLNode::FirstChildElement,tinyxml2::XMLNode::LastChildElement">
|
||||
<noreturn>false</noreturn>
|
||||
<leak-ignore/>
|
||||
<returnValue type="tinyxml2::XMLElement *"/>
|
||||
<arg nr="1">
|
||||
<not-uninit/>
|
||||
</arg>
|
||||
|
|
Loading…
Reference in New Issue