mirror of
https://github.com/php/php-src.git
synced 2025-08-16 05:58:45 +02:00
- Add array.c to the Win32 project
This commit is contained in:
parent
b712c9360d
commit
3bffcbef5b
3 changed files with 13 additions and 1 deletions
|
@ -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);
|
||||
|
|
|
@ -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
|
||||
};
|
||||
|
||||
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue