- We need to invalidate the selection area when we replace the
[mono-project.git] / mono / metadata / filewatcher.h
blob9ba2535ad2b7a49adab7054dd1fbba08d91216e1
1 /*
2 * filewatcher.h: File System Watcher internal calls
4 * Authors:
5 * Gonzalo Paniagua Javier (gonzalo@ximian.com)
7 * (C) 2004 Novell, Inc. (http://www.novell.com)
8 */
10 #ifndef _MONO_METADATA_FILEWATCHER_H
11 #define _MONO_METADATA_FILEWATCHER_H
13 #include <mono/metadata/object.h>
14 #include <mono/io-layer/io-layer.h>
15 #include "mono/utils/mono-compiler.h"
17 #ifdef HAVE_UNISTD_H
18 #include <unistd.h>
19 #endif
21 #ifdef HAVE_SYS_SYSCALL_H
22 #include <sys/syscall.h>
23 #endif
25 G_BEGIN_DECLS
27 gboolean ves_icall_System_IO_FSW_SupportsFSW (void) MONO_INTERNAL;
29 gboolean ves_icall_System_IO_FAMW_InternalFAMNextEvent (gpointer conn,
30 MonoString **filename,
31 gint *code,
32 gint *reqnum) MONO_INTERNAL;
34 int ves_icall_System_IO_InotifyWatcher_GetInotifyInstance (void) MONO_INTERNAL;
35 int ves_icall_System_IO_InotifyWatcher_AddWatch (int fd, MonoString *directory, gint32 mask) MONO_INTERNAL;
36 int ves_icall_System_IO_InotifyWatcher_RemoveWatch (int fd, gint32 watch_descriptor) MONO_INTERNAL;
38 G_END_DECLS
40 #endif