History log of /PHP-5.3/Zend/zend.h (Results 126 – 150 of 360)
Revision (<<< Hide revision tags) (Show revision tags >>>) Date Author Comments
Revision tags: php-5.0.0RC1RC1
# 494d8207 09-Mar-2004 Marcus Boerger

No longer needed


Revision tags: RELEASE_0_2_0
# 1727c6a2 20-Feb-2004 Hartmut Holzgraefe

more EXTERN_C wrapping of ZEND_API prototypes


# 3a3f95a3 18-Feb-2004 Hartmut Holzgraefe

wrap ZEND_API prototypes into BEGIN_EXTERN_C/END_EXTERN_C
for C++ extension support


Revision tags: php-4.3.5RC3, php-5.0.0b4, php-5.0.0b4RC1, php-4.3.5RC2, RELEASE_1_3b6, php_ibase_before_split, php-4.3.5RC1
# ccfc46b0 08-Jan-2004 foobar

- Happy new year and PHP 5 for rest of the files too..
# Should the LICENSE and Zend/LICENSE dates be updated too?


Revision tags: php-5.0.0b3, php-5.0.0b3RC2, php-5.0.0b3RC1
# e94e3e17 14-Dec-2003 Zeev Suraski

Some cleanup


# e2012609 11-Dec-2003 Ilia Alshanetsky

Fixed extra byte allocation for TRUE/FALSE/ZEND_THREAD_SAFE/NULL constants.


Revision tags: php-4.3.4, php-4.3.4RC3, php-5.0.0b2, RELEASE_2_0_0RC1, php-5.0.0b2RC1
# 3c62b3b5 22-Oct-2003 Marcus Boerger

Expand Interface C API.
In short: zend_class_entry->interface_gets_implemented() allows to modify
the class entry of a class when an interface gets implemented.


Revision tags: php-4.3.4RC2, RELEASE_1_3b3
# b0b82541 18-Oct-2003 Marcus Boerger

Fix class/iterator relationship & handling


# 25aa8b71 17-Oct-2003 Marcus Boerger

Added c-api for iterators
# After 4 Month work and endless discussions...


Revision tags: BEFORE_HANDLERS_RESHUFFLE
# 149f7860 03-Oct-2003 Moriyoshi Koizumi

Bug #25738 (alloca() related problems on the Darwin platform)


Revision tags: RELEASE_1_3b2, php-4.3.4RC1, RELEASE_0_7
# 1c86e532 14-Sep-2003 Marcus Boerger

Bugfix #25528 (by Ard Biesheuvel)


# d45fd8a1 31-Aug-2003 Marcus Boerger

Make vspprintf available as zend utility function. Use it in exception output.


# 744c68e4 28-Aug-2003 Sascha Schumann

older gccs don't understand attribute((format)) on function pointers


# 83bd1f43 28-Aug-2003 Sascha Schumann

ZEND_GCC_VERSION should always be defined to a number so we can use
simple comparisons all the time.


# 2e36578c 28-Aug-2003 Sascha Schumann

Add format attribute to a number of functions

Kill a few warnings


# 169d43e5 28-Aug-2003 Sascha Schumann

cleanup & centralize ZEND_GCC_VERSION and ZEND_ATTRIBUTE_MALLOC so that
they can be used by downstream applications


# 28447d62 25-Aug-2003 foobar

- Fixed bug #25240 (spaces before pre-processor directives)


Revision tags: php-4.3.3
# 49c4866a 18-Aug-2003 Zeev Suraski

- Improve tracking
- Fix several overloading issues


Revision tags: php-4.3.3RC4
# 602d1b00 17-Aug-2003 Sascha Schumann

One bit fields need to be unsigned, otherwise there is no storage for
the sign bit

"A signed bit field has a length of 1 bit."


Revision tags: RELEASE_0_5_3, php-4.3.3RC3, RELEASE_0_5_2, RELEASE_1_2b5
# fe9b5870 04-Aug-2003 Zeev Suraski

Add logical XOR, proves to be quite useful lately


# f8bbafd6 03-Aug-2003 Zeev Suraski

ntroduce infrastructure for supplying information about arguments,
including:

- Whether or not to pass by ref (replaces the old arg_types, with arg_info)
- Argument name (for future

ntroduce infrastructure for supplying information about arguments,
including:

- Whether or not to pass by ref (replaces the old arg_types, with arg_info)
- Argument name (for future use, maybe introspection)
- Class/Interface name (for type hints)
- If a class/interface name is available, whether to allow a null instance

Both user and builtin functions share the same data structures.

To declare a builtin function that expects its first arg to be an instance
of class 'Person', its second argument as a regular arg, and its third by
reference, use:

ZEND_BEGIN_ARG_INFO(my_func_arg_info, 0)
ZEND_ARG_OBJ_INFO(0, someone, Person, 1)
ZEND_ARG_PASS_INFO(0)
ZEND_ARG_PASS_INFO(1)
ZEND_END_ARG_INFO();

and use my_func_arg_info as the arg_info parameter to the ZEND_FE() family
of macros.

The first arg to each ZEND_ARG_*() macro is whether or not to pass by ref.

The boolean arg to ZEND_BEGIN_ARG_INFO() tells the engine whether to treat
the arguments for which there's no explicit information as pass by reference
or not.
The boolean argument to ZEND_ARG_OBJ_INFO() (4th arg) is whether or not to allownull values.

show more ...


Revision tags: BEFORE_ARG_INFO, php-4.3.3RC2
# 2fd4ffce 30-Jul-2003 Zeev Suraski

Add exec_finished() callback for modules - this is the last place where the
modules may touch the symbol table reliably


# 237116aa 23-Jul-2003 Stanislav Malyshev

Remove namespace leftovers


# aad79769 19-Jul-2003 foobar

Fix the HPUX alloca fix as suggested by Sascha


# 99d0a5c8 19-Jul-2003 Andi Gutmans

- Don't use alloca on HP-UX (Moriyoshi Koizumi <moriyoshi@at.wakwak.com>)


12345678910>>...15