From: Edin Kadribasic Date: Wed, 6 Sep 2006 21:48:57 +0000 (+0000) Subject: MFB: Fixed bug #38190 (threading issues on windows 2003) X-Git-Tag: RELEASE_1_0_0RC1~1746 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=cf933ed410fac5789d44d81f2751690e59e2a5f2;p=php MFB: Fixed bug #38190 (threading issues on windows 2003) --- diff --git a/ext/libxml/libxml.c b/ext/libxml/libxml.c index 06d11a1311..15974c69f7 100644 --- a/ext/libxml/libxml.c +++ b/ext/libxml/libxml.c @@ -1043,6 +1043,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 /*