apr_arch_file_io.h (apr-1.6.5.tar.bz2) | : | apr_arch_file_io.h (apr-1.7.0.tar.bz2) | ||
---|---|---|---|---|
skipping to change at line 138 | skipping to change at line 138 | |||
/* Information bits available from the WIN32 FindFirstFile function */ | /* Information bits available from the WIN32 FindFirstFile function */ | |||
#define APR_FINFO_WIN32_DIR (APR_FINFO_NAME | APR_FINFO_TYPE \ | #define APR_FINFO_WIN32_DIR (APR_FINFO_NAME | APR_FINFO_TYPE \ | |||
| APR_FINFO_CTIME | APR_FINFO_ATIME \ | | APR_FINFO_CTIME | APR_FINFO_ATIME \ | |||
| APR_FINFO_MTIME | APR_FINFO_SIZE) | | APR_FINFO_MTIME | APR_FINFO_SIZE) | |||
/* Sneak the Readonly bit through finfo->protection for internal use _only_ */ | /* Sneak the Readonly bit through finfo->protection for internal use _only_ */ | |||
#define APR_FREADONLY 0x10000000 | #define APR_FREADONLY 0x10000000 | |||
/* Private function for apr_stat/lstat/getfileinfo/dir_read */ | /* Private function for apr_stat/lstat/getfileinfo/dir_read */ | |||
int fillin_fileinfo(apr_finfo_t *finfo, WIN32_FILE_ATTRIBUTE_DATA *wininfo, | int fillin_fileinfo(apr_finfo_t *finfo, WIN32_FILE_ATTRIBUTE_DATA *wininfo, | |||
int byhandle, apr_int32_t wanted); | int byhandle, int finddata, const char *fname, | |||
apr_int32_t wanted); | ||||
/* Private function that extends apr_stat/lstat/getfileinfo/dir_read */ | /* Private function that extends apr_stat/lstat/getfileinfo/dir_read */ | |||
apr_status_t more_finfo(apr_finfo_t *finfo, const void *ufile, | apr_status_t more_finfo(apr_finfo_t *finfo, const void *ufile, | |||
apr_int32_t wanted, int whatfile); | apr_int32_t wanted, int whatfile); | |||
/* whatfile types for the ufile arg */ | /* whatfile types for the ufile arg */ | |||
#define MORE_OF_HANDLE 0 | #define MORE_OF_HANDLE 0 | |||
#define MORE_OF_FSPEC 1 | #define MORE_OF_FSPEC 1 | |||
#define MORE_OF_WFSPEC 2 | #define MORE_OF_WFSPEC 2 | |||
End of changes. 1 change blocks. | ||||
1 lines changed or deleted | 2 lines changed or added |