Home | Info | Community | Development | myReactOS | Contact Us
xsltUnregisterExtModule: : URI associated to this module
Unregister an XSLT extension module from the library.
Returns 0 if sucessful, -1 in case of error
Definition at line 1317 of file extensions.c.
{ int ret; if (URI == NULL) return (-1); if (xsltExtensionsHash == NULL) return (-1); xmlMutexLock(xsltExtMutex); ret = xmlHashRemoveEntry(xsltExtensionsHash, URI, (xmlHashDeallocator) xsltFreeExtModule); xmlMutexUnlock(xsltExtMutex); return (ret); }