From: Edin Kadribasic Date: Wed, 6 Sep 2006 21:44:45 +0000 (+0000) Subject: Fixed bug #38190 (threading issues on windows 2003) X-Git-Tag: php-5.2.0RC4~77 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=cb5ad145ab380bbf11faf3d1db87d776d69628e6;p=php Fixed bug #38190 (threading issues on windows 2003) --- diff --git a/ext/libxml/libxml.c b/ext/libxml/libxml.c index 0fa250d32a..d178cbc23d 100644 --- a/ext/libxml/libxml.c +++ b/ext/libxml/libxml.c @@ -1033,6 +1033,13 @@ void php_libxml_node_decrement_resource(php_libxml_node_object *object TSRMLS_DC } /* }}} */ +#ifdef PHP_WIN32 +PHP_LIBXML_API BOOL WINAPI DllMain(HINSTANCE hinstDLL, DWORD fdwReason, LPVOID lpvReserved) +{ + return xmlDllMain(hinstDLL, fdwReason, lpvReserved); +} +#endif + #endif /*