Home | Info | Community | Development | myReactOS | Contact Us
xmlHashCreateDict: : the size of the hash table : a dictionary to use for the hash
Create a new xmlHashTablePtr which will use as the internal dictionary
Returns the newly created object, or NULL if an error occured.
Definition at line 176 of file hash.c.
Referenced by xmlAddAttributeDecl(), xmlAddDefAttrs(), xmlAddElementDecl(), xmlAddID(), xmlAddNotationDecl(), xmlAddRef(), xmlAddSpecialAttr(), and xmlGetDtdElementDesc2().
{ xmlHashTablePtr table; table = xmlHashCreate(size); if (table != NULL) { table->dict = dict; xmlDictReference(dict); } return(table); }