mirror of
https://github.com/php/php-src.git
synced 2024-11-23 18:04:36 +08:00
7942eaf381
* Changed PHP4 to compile as a DLL, both ISAPI and the the CGI run with the same DLL. * Switched to using the DLL runtime library under Win32. PHP will NOT work if compiled against the static library! * Removed yesterday's php4libts project (with php4dllts, it's obsolete). This *does* affect thread-unsafe Windows as well - the thread unsafe CGI is also dependant on the thread-unsafe DLL.
18 lines
495 B
C
18 lines
495 B
C
#ifndef _OUTPUT_BUFFER
|
|
#define _OUTPUT_BUFFER
|
|
|
|
#include "php.h"
|
|
|
|
PHPAPI void zend_output_startup();
|
|
|
|
/* exported output functions */
|
|
int (*zend_body_write)(const char *str, uint str_length); /* string output */
|
|
int (*zend_header_write)(const char *str, uint str_length); /* unbuffer string output */
|
|
void zend_start_ob_buffering();
|
|
void zend_end_ob_buffering(int send_buffer);
|
|
int zend_ob_get_buffer(pval *p);
|
|
|
|
/* HEAD support */
|
|
void set_header_request(int value);
|
|
|
|
#endif /* _OUTPUT_BUFFER */ |