Added/Updated .gitignore files
[mono.git] / mono / io-layer / io-private.h
blob9baf176319a68dfce765389addad716268d7d0e3
1 /*
2 * io-private.h: Private definitions for file, console and find handles
4 * Author:
5 * Dick Porter (dick@ximian.com)
7 * (C) 2002 Ximian, Inc.
8 */
10 #ifndef _WAPI_IO_PRIVATE_H_
11 #define _WAPI_IO_PRIVATE_H_
13 #include <config.h>
14 #include <glib.h>
15 #ifdef HAVE_DIRENT_H
16 #include <dirent.h>
17 #endif
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 gboolean _wapi_lock_file_region (int fd, off_t offset, off_t length);
28 extern gboolean _wapi_unlock_file_region (int fd, off_t offset, off_t length);
29 extern void _wapi_file_details (gpointer handle_info);
30 extern void _wapi_console_details (gpointer handle_info);
31 extern void _wapi_pipe_details (gpointer handle_info);
32 extern gpointer _wapi_stdhandle_create (int fd, const gchar *name);
34 /* Currently used for both FILE, CONSOLE and PIPE handle types. This may
35 * have to change in future.
37 struct _WapiHandle_file
39 gchar *filename;
40 struct _WapiFileShare *share_info; /* Pointer into shared mem */
41 guint32 security_attributes;
42 guint32 fileaccess;
43 guint32 sharemode;
44 guint32 attrs;
47 struct _WapiHandle_find
49 gchar **namelist;
50 gchar *dir_part;
51 int num;
52 size_t count;
55 #endif /* _WAPI_IO_PRIVATE_H_ */