diff options
author | Thies C. Arntzen <thies@php.net> | 1999-10-15 15:22:25 +0000 |
---|---|---|
committer | Thies C. Arntzen <thies@php.net> | 1999-10-15 15:22:25 +0000 |
commit | b5c3c7bfc908f4e9f841db2ce2e20c6b4cee9d32 (patch) | |
tree | 079096896d215713e74b139203b0295a9df25b4b /ext/standard/file.h | |
parent | d69d118cbd401dfdc1766256347a52f0aaf724ca (diff) | |
download | php-git-b5c3c7bfc908f4e9f841db2ce2e20c6b4cee9d32.tar.gz |
files are now resources, file.c is thread-safe, the le_ vars are no longer shared,
but they are accessible thru "php_file_le_socket(), php_file_le_uploads()..."
i also updated the ftp, pdf and file-upload stuff to match the new requirements.
@- Cleaned up File-Module (Thies)
Diffstat (limited to 'ext/standard/file.h')
-rw-r--r-- | ext/standard/file.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/ext/standard/file.h b/ext/standard/file.h index 252a07a9a1..072e7ae534 100644 --- a/ext/standard/file.h +++ b/ext/standard/file.h @@ -69,6 +69,9 @@ PHP_FUNCTION(get_meta_tags); PHP_FUNCTION(flock); PHPAPI int _php3_set_sock_blocking(int socketd, int block); +PHPAPI int php_file_le_fopen(void); +PHPAPI int php_file_le_socket(void); +PHPAPI int php_file_le_uploads(void); #define phpext_file_ptr file_module_ptr #endif /* _FILE_H */ |