1
0
mirror of https://github.com/php/php-src.git synced 2026-04-29 03:03:26 +02:00
This commit is contained in:
Zeev Suraski
2000-03-12 18:08:46 +00:00
parent 05aa5cb831
commit 05cf4423b9
2 changed files with 9 additions and 1 deletions
+4 -1
View File
@@ -54,7 +54,10 @@ static ZEND_FUNCTION(is_subclass_of);
static ZEND_FUNCTION(get_class_vars);
static ZEND_FUNCTION(get_object_vars);
extern unsigned char first_arg_force_ref[];
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 };
static zend_function_entry builtin_functions[] = {
ZEND_FE(zend_version, NULL)
+5
View File
@@ -30,6 +30,11 @@
#define GINIT_FUNC_ARGS void
#define GINIT_FUNC_ARGS_PASSTHRU
extern unsigned char first_arg_force_ref[];
extern unsigned char first_arg_allow_ref[];
extern unsigned char second_arg_force_ref[];
extern unsigned char second_arg_allow_ref[];
#include "zend.h"
#define ZEND_MODULE_API_NO 20000310