diff options
author | Wez Furlong <wez@php.net> | 2002-09-25 15:25:12 +0000 |
---|---|---|
committer | Wez Furlong <wez@php.net> | 2002-09-25 15:25:12 +0000 |
commit | 696e0a2301f2641d2ef8c4f94f0287ddbcb6ae10 (patch) | |
tree | be82ee3df1f9ae5b1b5f95e57db51bc33dfc214a /main/php.h | |
parent | 8e635cf0bc377bc869a12d6c6a86c27a3a67c5a5 (diff) | |
download | php-git-696e0a2301f2641d2ef8c4f94f0287ddbcb6ae10.tar.gz |
Implement persistent streams. (for pfsockopen).
Juggle some includes/definitions.
Tidy up streams use in ext/standard/file.c
Diffstat (limited to 'main/php.h')
-rw-r--r-- | main/php.h | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/main/php.h b/main/php.h index 74a8c75f73..bbaaeaf183 100644 --- a/main/php.h +++ b/main/php.h @@ -230,10 +230,6 @@ char *strerror(int); # endif #endif -#include "php_streams.h" -#include "php_memory_streams.h" -#include "fopen_wrappers.h" - /* global variables */ extern pval *data; @@ -347,6 +343,11 @@ PHPAPI int cfg_get_string(char *varname, char **result); #define VIRTUAL_DIR #endif +#include "php_streams.h" +#include "php_memory_streams.h" +#include "fopen_wrappers.h" + + /* Virtual current working directory support */ #include "tsrm_virtual_cwd.h" |