diff options
author | sebastid <sebastid> | 2005-02-20 12:17:07 +0000 |
---|---|---|
committer | sebastid <sebastid@7cbeb6ba-43b4-40fd-8cce-4c39aea84d33> | 2005-02-20 12:17:07 +0000 |
commit | 813c77c392590069021347e293404565d45b1620 (patch) | |
tree | 244267c03a6e6474e43b8f36e856941065bcd190 /legacy/ecore/src/lib/ecore_file/ecore_file_private.h | |
parent | 7dbcc926023fd11336c7fedbb0e0956de8ca7c17 (diff) |
fileinteraction and monitoring
SVN revision: 13442
Diffstat (limited to 'legacy/ecore/src/lib/ecore_file/ecore_file_private.h')
-rw-r--r-- | legacy/ecore/src/lib/ecore_file/ecore_file_private.h | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/legacy/ecore/src/lib/ecore_file/ecore_file_private.h b/legacy/ecore/src/lib/ecore_file/ecore_file_private.h new file mode 100644 index 0000000000..a357dd253b --- /dev/null +++ b/legacy/ecore/src/lib/ecore_file/ecore_file_private.h | |||
@@ -0,0 +1,25 @@ | |||
1 | #define _GNU_SOURCE | ||
2 | |||
3 | #include <stdlib.h> | ||
4 | #include <stdio.h> | ||
5 | #include <string.h> | ||
6 | |||
7 | #include <dirent.h> | ||
8 | #include <sys/types.h> | ||
9 | #include <sys/stat.h> | ||
10 | #include <unistd.h> | ||
11 | #include <limits.h> | ||
12 | |||
13 | #include "config.h" | ||
14 | |||
15 | #include "Ecore.h" | ||
16 | |||
17 | int ecore_file_monitor_init(void); | ||
18 | int ecore_file_monitor_shutdown(void); | ||
19 | |||
20 | /* | ||
21 | #define HAVE_POLL | ||
22 | #define HAVE_FAM | ||
23 | #define HAVE_DNOTIFY | ||
24 | #define HAVE_INOTIFY | ||
25 | */ | ||