]> granicus.if.org Git - php/commitdiff
Fixed bug #38190 (threading issues on windows 2003)
authorEdin Kadribasic <edink@php.net>
Wed, 6 Sep 2006 21:44:45 +0000 (21:44 +0000)
committerEdin Kadribasic <edink@php.net>
Wed, 6 Sep 2006 21:44:45 +0000 (21:44 +0000)
ext/libxml/libxml.c

index 0fa250d32a3a7065fcabc6469ae42f180c05e5d9..d178cbc23d7bafb9f8b1d49e4d8442b67ca87a76 100644 (file)
@@ -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
 
 /*