rbb 99/02/25 13:34:24
Modified: include apr_file_io.h Log: Added prototypes for copying file descriptors and getting stat information. Revision Changes Path 1.6 +5 -0 apache-apr/include/apr_file_io.h Index: apr_file_io.h =================================================================== RCS file: /home/cvs/apache-apr/include/apr_file_io.h,v retrieving revision 1.5 retrieving revision 1.6 diff -u -r1.5 -r1.6 --- apr_file_io.h 1999/02/25 19:57:10 1.5 +++ apr_file_io.h 1999/02/25 21:34:23 1.6 @@ -96,5 +96,10 @@ apr_uint64_t apr_read(apr_file_t *, void *, apr_uint64_t); apr_uint64_t apr_write(apr_file_t *, void *, apr_uint64_t); + +apr_file_t *apr_dupfile(apr_file_t *); +apr_status_t apr_getfileinfo(char *, apr_file_t *); +apr_status_t apr_updatefileinfo(apr_file_t *); + #endif /* ! APR_FILE_IO_H */
