fuse_kafka
src/inotify_win.c
00001 struct inotify_event
00002 {
00003     int wd;
00004     int mask;
00005     int len;
00006     char* name;
00007 }
00008 #define IN_MODIFY FILE_NOTIFY_CHANGE_SIZE
00009 #define IN_CREATE FILE_NOTIFY_CHANGE_FILE_NAME
00010 #define IN_DELETE FILE_NOTIFY_CHANGE_FILE_NAME
00011 #define IN_ISDIR FILE_NOTIFY_CHANGE_FILE_NAME
00012 ;
00013 int inotify_init(void)
00014 {
00015     return 0;
00016 }
00017 int inotify_add_watch (int __fd, const char *__name, uint32_t __mask)
00018 {
00019     return 0;
00020 }
00021 
 All Data Structures Files Functions Variables Defines