- Add array.c to the Win32 project

This commit is contained in:
Andi Gutmans 1999-11-19 15:06:57 +00:00
parent b712c9360d
commit 3bffcbef5b
3 changed files with 13 additions and 1 deletions

View file

@ -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);

View file

@ -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
};

View file

@ -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