summaryrefslogtreecommitdiff
path: root/ext/libxml
diff options
context:
space:
mode:
authorEdin Kadribasic <edink@php.net>2006-09-06 21:44:45 +0000
committerEdin Kadribasic <edink@php.net>2006-09-06 21:44:45 +0000
commitcb5ad145ab380bbf11faf3d1db87d776d69628e6 (patch)
tree7cd368271fe423cf462d1f97403586b0c4d9b70f /ext/libxml
parent3f0f73bebaa19c4d50f663a942119a4d7bcb3645 (diff)
downloadphp-git-cb5ad145ab380bbf11faf3d1db87d776d69628e6.tar.gz
Fixed bug #38190 (threading issues on windows 2003)
Diffstat (limited to 'ext/libxml')
-rw-r--r--ext/libxml/libxml.c7
1 files changed, 7 insertions, 0 deletions
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
/*