History log of /php-src/ext/standard/php_dir_int.h (Results 1 – 3 of 3)
Revision Date Author Comments
# 50b3a0d0 08-Sep-2024 Christoph M. Becker

Add comments about internal headers (GH-15689)

A common convention is to name internal C header files as `*_int.h`.
Since a couple of these are actually installed, we add comments that

Add comments about internal headers (GH-15689)

A common convention is to name internal C header files as `*_int.h`.
Since a couple of these are actually installed, we add comments that
this is not supposed to happen, (a) to avoid installing further
internal headers, and (b) to pave the way to fix this in the next major
PHP version.

Somewhat special is php_gmp_int.h, where "int" is meant as abbreviation
for "interface".

Another common convention is appending `_priv` or `_private`, but since
there have not been any issues regarding these headers so far, we
refrain from adding respective comments to these headers.

Anyhow, it might be a good idea to introduce some common naming
convention for such internal/private headers.

show more ...


# 5bb03158 19-Mar-2024 Máté Kocsis

Add the last few remaining constants to stubs (#13751)

Basically all constants are now declared via stubs. The rest of the constants are either deprecated (`SID` or `MHASH_*`) or out of inte

Add the last few remaining constants to stubs (#13751)

Basically all constants are now declared via stubs. The rest of the constants are either deprecated (`SID` or `MHASH_*`) or out of interest (`__COMPILER_HALT_OFFSET__` and `PHP_CLI_PROCESS_TITLE`).

show more ...


# e957e25c 13-Feb-2024 haszi

Move constants from dir.c to stub file (#13312)