diff options
author | Wez Furlong <wez@php.net> | 2003-08-14 16:49:56 +0000 |
---|---|---|
committer | Wez Furlong <wez@php.net> | 2003-08-14 16:49:56 +0000 |
commit | 6df5d5ba202b531de6bb563e2462e046d701e8d6 (patch) | |
tree | 02fd4627ab540467f21eb30f96fb10ce34a6f371 /main/internal_functions_win32.c | |
parent | e6b916cb1543c26d830a6818b012c5ace09b3139 (diff) | |
download | php-git-6df5d5ba202b531de6bb563e2462e046d701e8d6.tar.gz |
Add new COM (and .Net) extension for php5.
Not yet complete, but should work for most people.
Diffstat (limited to 'main/internal_functions_win32.c')
-rw-r--r-- | main/internal_functions_win32.c | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/main/internal_functions_win32.c b/main/internal_functions_win32.c index 8ca1e407e6..0fff4f8c80 100644 --- a/main/internal_functions_win32.c +++ b/main/internal_functions_win32.c @@ -97,6 +97,7 @@ #ifdef HAVE_SQLITE #include "ext/sqlite/php_sqlite.h" #endif +#include "ext/com_dotnet/php_com_dotnet.h" /* }}} */ /* {{{ php_builtin_extensions[] @@ -109,6 +110,7 @@ zend_module_entry *php_builtin_extensions[] = { #if HAVE_CALENDAR ,phpext_calendar_ptr #endif + ,phpext_com_dotnet_ptr #if HAVE_CTYPE ,phpext_ctype_ptr #endif @@ -135,14 +137,14 @@ zend_module_entry *php_builtin_extensions[] = { #endif #if HAVE_LIBXML #if HAVE_DOM - ,phpext_dom_ptr + phpext_dom_ptr #endif #if HAVE_SIMPLEXML - ,phpext_simplexml_ptr + phpext_simplexml_ptr #endif #endif #if HAVE_XML - ,phpext_xml_ptr + phpext_xml_ptr #endif #if HAVE_XML && HAVE_WDDX ,phpext_wddx_ptr |