Diff for /embedaddon/php/ext/standard/file.h between versions 1.1.1.1 and 1.1.1.2

version 1.1.1.1, 2012/02/21 23:48:02 version 1.1.1.2, 2012/05/29 12:34:43
Line 72  PHP_FUNCTION(sys_get_temp_dir); Line 72  PHP_FUNCTION(sys_get_temp_dir);
   
 PHP_MINIT_FUNCTION(user_streams);  PHP_MINIT_FUNCTION(user_streams);
   
PHPAPI int php_le_stream_context(void);PHPAPI int php_le_stream_context(TSRMLS_D);
 PHPAPI int php_set_sock_blocking(int socketd, int block TSRMLS_DC);  PHPAPI int php_set_sock_blocking(int socketd, int block TSRMLS_DC);
 PHPAPI int php_copy_file(char *src, char *dest TSRMLS_DC);  PHPAPI int php_copy_file(char *src, char *dest TSRMLS_DC);
 PHPAPI int php_copy_file_ex(char *src, char *dest, int src_chk TSRMLS_DC);  PHPAPI int php_copy_file_ex(char *src, char *dest, int src_chk TSRMLS_DC);
PHPAPI int php_copy_file_ctx(char *src, char *dest, int src_chk, php_stream_context *context TSRMLS_DC);PHPAPI int php_copy_file_ctx(char *src, char *dest, int src_chk, php_stream_context *ctx TSRMLS_DC);
 PHPAPI int php_mkdir_ex(char *dir, long mode, int options TSRMLS_DC);  PHPAPI int php_mkdir_ex(char *dir, long mode, int options TSRMLS_DC);
 PHPAPI int php_mkdir(char *dir, long mode TSRMLS_DC);  PHPAPI int php_mkdir(char *dir, long mode TSRMLS_DC);
 PHPAPI void php_fgetcsv(php_stream *stream, char delimiter, char enclosure, char escape_char, size_t buf_len, char *buf, zval *return_value TSRMLS_DC);  PHPAPI void php_fgetcsv(php_stream *stream, char delimiter, char enclosure, char escape_char, size_t buf_len, char *buf, zval *return_value TSRMLS_DC);
   PHPAPI int php_fputcsv(php_stream *stream, zval *fields, char delimiter, char enclosure, char escape_char TSRMLS_DC);
   
 #define META_DEF_BUFSIZE 8192  #define META_DEF_BUFSIZE 8192
   
Line 119  typedef struct { Line 120  typedef struct {
         long auto_detect_line_endings;          long auto_detect_line_endings;
         long default_socket_timeout;          long default_socket_timeout;
         char *user_agent; /* for the http wrapper */          char *user_agent; /* for the http wrapper */
           char *from_address; /* for the ftp and http wrappers */
         char *user_stream_current_filename; /* for simple recursion protection */          char *user_stream_current_filename; /* for simple recursion protection */
         php_stream_context *default_context;          php_stream_context *default_context;
         HashTable *stream_wrappers;                     /* per-request copy of url_stream_wrappers_hash */          HashTable *stream_wrappers;                     /* per-request copy of url_stream_wrappers_hash */
         HashTable *stream_filters;                      /* per-request copy of stream_filters_hash */          HashTable *stream_filters;                      /* per-request copy of stream_filters_hash */
           HashTable *wrapper_errors;                      /* key: wrapper address; value: linked list of char* */
 } php_file_globals;  } php_file_globals;
   
 #ifdef ZTS  #ifdef ZTS

Removed from v.1.1.1.1  
changed lines
  Added in v.1.1.1.2


FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>