summaryrefslogtreecommitdiff
path: root/ext/standard/php_output.h
diff options
context:
space:
mode:
authorStig Bakken <ssb@php.net>2000-03-06 20:37:11 +0000
committerStig Bakken <ssb@php.net>2000-03-06 20:37:11 +0000
commit99e0b36321236c1bcf9d60c1e3ed07050b55a20f (patch)
tree624ad6ac28695d278db7a783626e44177a7d3924 /ext/standard/php_output.h
parent031808cd1b0f584b9c37af5fc7edecf63977da10 (diff)
downloadphp-git-99e0b36321236c1bcf9d60c1e3ed07050b55a20f.tar.gz
@Cleaned up extension namespace (Stig)
Cleaned up extension namespace, and changed ext/standard into one single extension.
Diffstat (limited to 'ext/standard/php_output.h')
-rw-r--r--ext/standard/php_output.h9
1 files changed, 7 insertions, 2 deletions
diff --git a/ext/standard/php_output.h b/ext/standard/php_output.h
index 50f3b4c138..2278cce179 100644
--- a/ext/standard/php_output.h
+++ b/ext/standard/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 */