diff options
author | Stig Bakken <ssb@php.net> | 2000-03-06 20:37:11 +0000 |
---|---|---|
committer | Stig Bakken <ssb@php.net> | 2000-03-06 20:37:11 +0000 |
commit | 99e0b36321236c1bcf9d60c1e3ed07050b55a20f (patch) | |
tree | 624ad6ac28695d278db7a783626e44177a7d3924 /main/php_output.h | |
parent | 031808cd1b0f584b9c37af5fc7edecf63977da10 (diff) | |
download | php-git-99e0b36321236c1bcf9d60c1e3ed07050b55a20f.tar.gz |
@Cleaned up extension namespace (Stig)
Cleaned up extension namespace, and changed ext/standard into one single
extension.
Diffstat (limited to 'main/php_output.h')
-rw-r--r-- | main/php_output.h | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/main/php_output.h b/main/php_output.h index 50f3b4c138..2278cce179 100644 --- a/main/php_output.h +++ b/main/php_output.h @@ -33,7 +33,12 @@ PHPAPI void php_end_implicit_flush(); PHPAPI char *php_get_output_start_filename(); PHPAPI int php_get_output_start_lineno(); -extern zend_module_entry output_module_entry; -#define phpext_output_ptr &output_module_entry +PHP_FUNCTION(ob_start); +PHP_FUNCTION(ob_end_flush); +PHP_FUNCTION(ob_end_clean); +PHP_FUNCTION(ob_get_contents); +PHP_FUNCTION(ob_implicit_flush); + +PHP_GINIT_FUNCTION(output); #endif /* _OUTPUT_BUFFER */ |