summaryrefslogtreecommitdiff
path: root/include/arch/win32/apr_arch_file_io.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/arch/win32/apr_arch_file_io.h')
-rw-r--r--include/arch/win32/apr_arch_file_io.h8
1 files changed, 1 insertions, 7 deletions
diff --git a/include/arch/win32/apr_arch_file_io.h b/include/arch/win32/apr_arch_file_io.h
index bef536450..9fb8df19a 100644
--- a/include/arch/win32/apr_arch_file_io.h
+++ b/include/arch/win32/apr_arch_file_io.h
@@ -159,16 +159,10 @@ apr_status_t more_finfo(apr_finfo_t *finfo, const void *ufile,
/* for apr_poll.c */
#define filedes filehand
-typedef enum {
- APR_FILETYPE_FILE = 0,
- APR_FILETYPE_PIPE,
- APR_FILETYPE_SOCKET
-} apr_filetype_e;
-
struct apr_file_t {
apr_pool_t *pool;
HANDLE filehand;
- apr_filetype_e ftype; /* Is this a pipe, a socket or a file? */
+ BOOLEAN pipe; /* Is this a pipe of a file? */
OVERLAPPED *pOverlapped;
apr_interval_time_t timeout;
apr_int32_t flags;