Method
AravisDomDocumentappend_from_memory
Declaration [src]
void
arv_dom_document_append_from_memory (
ArvDomDocument* document,
ArvDomNode* node,
void* buffer,
int size,
GError** error
)
Description [src]
Append a chunk of xml tree to an existing document. The resulting nodes will be appended to
node
, or to document
if node
== NULL.
Size set to a negative value indicated an unknow xml data size.
Parameters
node |
ArvDomNode |
A |
|
The data is owned by the caller of the function. | |
buffer |
void* |
A memory buffer holding xml data. |
|
The argument can be NULL . | |
The data is owned by the caller of the function. | |
size |
int |
Size of the xml data, in bytes. |
|
error |
GError ** |
The return location for a GError* , or NULL . |