2 * io-private.h: Private definitions for file, console and find handles
5 * Dick Porter (dick@ximian.com)
7 * (C) 2002 Ximian, Inc.
10 #ifndef _WAPI_IO_PRIVATE_H_
11 #define _WAPI_IO_PRIVATE_H_
19 #include <mono/io-layer/io.h>
20 #include <mono/io-layer/wapi-private.h>
22 extern struct _WapiHandleOps _wapi_file_ops
;
23 extern struct _WapiHandleOps _wapi_console_ops
;
24 extern struct _WapiHandleOps _wapi_find_ops
;
25 extern struct _WapiHandleOps _wapi_pipe_ops
;
27 extern void _wapi_file_details (gpointer handle_info
);
28 extern void _wapi_console_details (gpointer handle_info
);
29 extern void _wapi_pipe_details (gpointer handle_info
);
31 /* Currently used for both FILE, CONSOLE and PIPE handle types. This may
32 * have to change in future.
34 struct _WapiHandle_file
37 struct _WapiFileShare
*share_info
; /* Pointer into shared mem */
38 guint32 security_attributes
;
44 struct _WapiHandle_find
52 #endif /* _WAPI_IO_PRIVATE_H_ */