diff options
author | Andi Gutmans <andi@php.net> | 1999-11-19 15:06:57 +0000 |
---|---|---|
committer | Andi Gutmans <andi@php.net> | 1999-11-19 15:06:57 +0000 |
commit | 3bffcbef5b1de69e94155df0ebab114b7c68ef9b (patch) | |
tree | d213b444e6341b9375e9d9d9772b4faff7581ff1 | |
parent | b712c9360d66b92fcf7a24a5d1be391eb27495e1 (diff) | |
download | php-git-3bffcbef5b1de69e94155df0ebab114b7c68ef9b.tar.gz |
- Add array.c to the Win32 project
-rw-r--r-- | ext/standard/array.c | 2 | ||||
-rw-r--r-- | main/internal_functions_win32.c | 4 | ||||
-rw-r--r-- | php4dllts.dsp | 8 |
3 files changed, 13 insertions, 1 deletions
diff --git a/ext/standard/array.c b/ext/standard/array.c index f12e68f1cf..a802aeb0e3 100644 --- a/ext/standard/array.c +++ b/ext/standard/array.c @@ -104,6 +104,8 @@ zend_module_entry array_module_entry = { PHP_MINIT_FUNCTION(array) { + ELS_FETCH(); + REGISTER_LONG_CONSTANT("EXTR_OVERWRITE", EXTR_OVERWRITE, CONST_CS | CONST_PERSISTENT); REGISTER_LONG_CONSTANT("EXTR_SKIP", EXTR_SKIP, CONST_CS | CONST_PERSISTENT); REGISTER_LONG_CONSTANT("EXTR_PREFIX_SAME", EXTR_PREFIX_SAME, CONST_CS | CONST_PERSISTENT); diff --git a/main/internal_functions_win32.c b/main/internal_functions_win32.c index 73ceb20b8d..403738aeb5 100644 --- a/main/internal_functions_win32.c +++ b/main/internal_functions_win32.c @@ -46,6 +46,7 @@ #include "ext/standard/php3_standard.h" #include "ext/standard/php_lcg.h" #include "ext/standard/php_output.h" +#include "ext/standard/php_array.h" #include "ext/COM/php_COM.h" #include "ext/standard/reg.h" #include "ext/pcre/php_pcre.h" @@ -82,7 +83,8 @@ zend_module_entry *php3_builtin_modules[] = { phpext_odbc_ptr, phpext_lcg_ptr, phpext_session_ptr, - phpext_output_ptr + phpext_output_ptr, + array_module_ptr }; diff --git a/php4dllts.dsp b/php4dllts.dsp index 0d1e929cab..f0be228be3 100644 --- a/php4dllts.dsp +++ b/php4dllts.dsp @@ -271,6 +271,10 @@ SOURCE=.\ext\apache\apache.c # End Source File
# Begin Source File
+SOURCE=.\ext\standard\array.c
+# End Source File
+# Begin Source File
+
SOURCE=.\ext\standard\base64.c
# End Source File
# Begin Source File
@@ -560,6 +564,10 @@ SOURCE=.\functions\php3_syslog.h # End Source File
# Begin Source File
+SOURCE=.\ext\standard\php_array.h
+# End Source File
+# Begin Source File
+
SOURCE=.\ext\standard\php_lcg.h
# End Source File
# Begin Source File
|