edmiNewXML

edmiNewXML


 

EdmiError edmiNewXML(SdaiXml *pXml);

Creates a new tEdmXml data exchange object. The data structure will be allocated on the heap and be null-initialized. Use edmiFreeXml to release the allocated memory.

Arguments


Type

Name

Comment

SdaiXml

pXml

Address of a pointer to the tEdmXml data structure that will be allocated and initialized.

Return Value


Options


 

Example


 

 EdmiError rstat; SdaiXml pXml; . . . if (rstat = edmiNewXML(&pXml)) { printf("\nError %d in edmiNewXML"); }

 

See also