diff options
author | Zeev Suraski <zeev@php.net> | 1999-05-04 03:43:49 +0000 |
---|---|---|
committer | Zeev Suraski <zeev@php.net> | 1999-05-04 03:43:49 +0000 |
commit | 95af652d2b6d0bbaa57d9658a9951fe29620dbb7 (patch) | |
tree | 683ba934ffa6cb271d5506105c2e40eb773867c1 /main/internal_functions_win32.c | |
parent | 18742324b3f6952c537db47f3348316d595e9f9f (diff) | |
download | php-git-95af652d2b6d0bbaa57d9658a9951fe29620dbb7.tar.gz |
An initial default builtin modules file for Win32
Diffstat (limited to 'main/internal_functions_win32.c')
-rw-r--r-- | main/internal_functions_win32.c | 85 |
1 files changed, 85 insertions, 0 deletions
diff --git a/main/internal_functions_win32.c b/main/internal_functions_win32.c new file mode 100644 index 0000000000..11f06628df --- /dev/null +++ b/main/internal_functions_win32.c @@ -0,0 +1,85 @@ +/* + +----------------------------------------------------------------------+ + | PHP HTML Embedded Scripting Language Version 3.0 | + +----------------------------------------------------------------------+ + | Copyright (c) 1997,1998 PHP Development Team (See Credits file) | + +----------------------------------------------------------------------+ + | This program is free software; you can redistribute it and/or modify | + | it under the terms of one of the following licenses: | + | | + | A) the GNU General Public License as published by the Free Software | + | Foundation; either version 2 of the License, or (at your option) | + | any later version. | + | | + | B) the PHP License as published by the PHP Development Team and | + | included in the distribution in the file: LICENSE | + | | + | This program is distributed in the hope that it will be useful, | + | but WITHOUT ANY WARRANTY; without even the implied warranty of | + | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | + | GNU General Public License for more details. | + | | + | You should have received a copy of both licenses referred to here. | + | If you did not, or have any questions about PHP licensing, please | + | contact core@php.net. | + +----------------------------------------------------------------------+ + | Authors: Andi Gutmans <andi@zend.com> | + | Zeev Suraski <zeev@zend.com> | + +----------------------------------------------------------------------+ + */ + + +/* $Id$ */ + + +#include "php.h" +#include "modules.h" +#include "internal_functions_registry.h" +#include "zend_compile.h" +#include <stdarg.h> +#include <stdlib.h> +#include <stdio.h> + +#include "ext/bcmath/php3_bcmath.h" +#include "ext/db/php3_db.h" +#include "ext/gd/php3_gd.h" +#include "ext/standard/php3_standard.h" + +/* SNMP has to be moved to ext */ +/* #include "dl/snmp/php3_snmp.h" */ + +unsigned char first_arg_force_ref[] = { 1, BYREF_FORCE }; +unsigned char first_arg_allow_ref[] = { 1, BYREF_ALLOW }; +unsigned char second_arg_force_ref[] = { 2, BYREF_NONE, BYREF_FORCE }; +unsigned char second_arg_allow_ref[] = { 2, BYREF_NONE, BYREF_ALLOW }; + +zend_module_entry *php3_builtin_modules[] = { + phpext_bcmath_ptr, + phpext_db_ptr, + phpext_gd_ptr, + phpext_standard_ptr, +}; + + +int module_startup_modules(void) +{ + zend_module_entry **ptr = php3_builtin_modules, **end = ptr+(sizeof(php3_builtin_modules)/sizeof(zend_module_entry *)); + + while (ptr < end) { + if (*ptr) { + if (zend_startup_module(*ptr)==FAILURE) { + return FAILURE; + } + } + ptr++; + } + return SUCCESS; +} + + +/* + * Local variables: + * tab-width: 4 + * c-basic-offset: 4 + * End: + */ |