php-src/main/internal_functions_win32.c

167 lines
3.9 KiB
C
Raw Normal View History

/*
2002-04-17 18:14:03 +00:00
+----------------------------------------------------------------------+
| PHP Version 4 |
+----------------------------------------------------------------------+
| Copyright (c) 1997-2002 The PHP Group |
+----------------------------------------------------------------------+
| This source file is subject to version 2.02 of the PHP license, |
| that is bundled with this package in the file LICENSE, and is |
| available at through the world-wide-web at |
| http://www.php.net/license/2_02.txt. |
| If you did not receive a copy of the PHP license and are unable to |
| obtain it through the world-wide-web, please send a note to |
| license@php.net so we can mail you a copy immediately. |
+----------------------------------------------------------------------+
| Authors: Andi Gutmans <andi@zend.com> |
| Zeev Suraski <zeev@zend.com> |
+----------------------------------------------------------------------+
2002-04-17 18:14:03 +00:00
$Id$
*/
/* {{{ includes
*/
#include "php.h"
2000-06-05 23:24:42 +00:00
#include "php_main.h"
#include "zend_modules.h"
#include "internal_functions_registry.h"
#include "zend_compile.h"
#include <stdarg.h>
#include <stdlib.h>
#include <stdio.h>
1999-05-15 14:56:23 +00:00
#include "ext/standard/dl.h"
#include "ext/standard/file.h"
#include "ext/standard/fsock.h"
#include "ext/standard/head.h"
#include "ext/standard/pack.h"
#include "ext/standard/php_browscap.h"
#include "ext/standard/php_crypt.h"
#include "ext/standard/php_dir.h"
#include "ext/standard/php_filestat.h"
#include "ext/standard/php_mail.h"
#include "ext/standard/php_ext_syslog.h"
#include "ext/standard/php_standard.h"
#include "ext/standard/php_lcg.h"
1999-11-19 15:06:57 +00:00
#include "ext/standard/php_array.h"
#include "ext/standard/php_assert.h"
#if WITH_BCMATH
#include "ext/bcmath/php_bcmath.h"
#endif
#if HAVE_CALENDAR
2000-10-06 00:03:02 +00:00
#include "ext/calendar/php_calendar.h"
#endif
#if HAVE_CTYPE
#include "ext/ctype/php_ctype.h"
#endif
#if HAVE_COM
#include "ext/com/php_COM.h"
#endif
2002-04-17 17:38:03 +00:00
#if HAVE_FTP
#include "ext/ftp/php_ftp.h"
2002-04-17 17:38:03 +00:00
#endif
1999-05-24 18:02:42 +00:00
#include "ext/standard/reg.h"
2002-04-18 17:56:53 +00:00
#if HAVE_PCRE || HAVE_BUNDLED_PCRE
1999-07-06 19:49:48 +00:00
#include "ext/pcre/php_pcre.h"
2002-04-18 17:56:53 +00:00
#endif
2002-04-17 17:57:40 +00:00
#if HAVE_UODBC
1999-09-05 19:36:04 +00:00
#include "ext/odbc/php_odbc.h"
2002-04-17 17:57:40 +00:00
#endif
#if HAVE_SESSION
#include "ext/session/php_session.h"
#endif
#if HAVE_LIBEXPAT
#include "ext/xml/php_xml.h"
#endif
#if HAVE_LIBEXPAT && HAVE_WDDX
#include "ext/wddx/php_wddx.h"
#endif
2002-04-17 18:10:35 +00:00
#if HAVE_MYSQL
#include "ext/mysql/php_mysql.h"
2002-04-17 18:10:35 +00:00
#endif
#if HAVE_MBSTRING
#include "ext/mbstring/mbstring.h"
2002-04-18 16:39:30 +00:00
#endif
#ifndef ZEND_ENGINE_2
#if HAVE_OVERLOAD
#include "ext/overload/php_overload.h"
#endif
#endif
#if HAVE_TOKENIZER
#include "ext/tokenizer/php_tokenizer.h"
#endif
#if HAVE_ZLIB
#include "ext/zlib/php_zlib.h"
#endif
/* }}} */
/* {{{ php_builtin_extensions[]
*/
zend_module_entry *php_builtin_extensions[] = {
2002-04-18 17:56:53 +00:00
phpext_standard_ptr
1999-07-19 16:08:43 +00:00
#if WITH_BCMATH
2002-04-18 17:56:53 +00:00
,phpext_bcmath_ptr
1999-07-19 16:08:43 +00:00
#endif
#if HAVE_CALENDAR
2002-04-18 17:56:53 +00:00
,phpext_calendar_ptr
#endif
#if HAVE_CTYPE
,phpext_ctype_ptr
#endif
#if HAVE_COM
2002-04-18 17:56:53 +00:00
,phpext_com_ptr
#endif
2002-04-17 17:38:03 +00:00
#if HAVE_FTP
2002-04-18 17:56:53 +00:00
,phpext_ftp_ptr
2002-04-17 17:38:03 +00:00
#endif
#if HAVE_MBSTRING
2002-04-18 17:56:53 +00:00
,phpext_mbstring_ptr
#endif
2002-04-17 18:10:35 +00:00
#if HAVE_MYSQL
2002-04-18 17:56:53 +00:00
,phpext_mysql_ptr
2002-04-17 18:10:35 +00:00
#endif
2002-04-17 17:57:40 +00:00
#if HAVE_UODBC
2002-04-18 17:56:53 +00:00
,phpext_odbc_ptr
2002-04-17 17:57:40 +00:00
#endif
#ifndef ZEND_ENGINE_2
#if HAVE_OVERLOAD
2002-04-18 17:56:53 +00:00
,phpext_overload_ptr
#endif
#endif
2002-04-18 17:56:53 +00:00
#if HAVE_PCRE || HAVE_BUNDLED_PCRE
,phpext_pcre_ptr
#endif
#if HAVE_SESSION
,phpext_session_ptr
#endif
#if HAVE_TOKENIZER
2002-04-18 17:56:53 +00:00
,phpext_tokenizer_ptr
#endif
#if HAVE_LIBEXPAT
2002-04-18 17:56:53 +00:00
,phpext_xml_ptr
#endif
#if HAVE_LIBEXPAT && HAVE_WDDX
2002-04-18 17:56:53 +00:00
,phpext_wddx_ptr
#endif
#if HAVE_ZLIB
,phpext_zlib_ptr
#endif
};
/* }}} */
#define EXTCOUNT (sizeof(php_builtin_extensions)/sizeof(zend_module_entry *))
int php_startup_internal_extensions(void)
{
return php_startup_extensions(php_builtin_extensions, EXTCOUNT);
}
/*
* Local variables:
* tab-width: 4
* c-basic-offset: 4
* End:
* vim600: sw=4 ts=4 fdm=marker
* vim<600: sw=4 ts=4
*/