Changed everything to inotify naming.
[cl-inotify.git] / grovel.lisp
1 (in-package #:cl-inotify)
2
3 (include "sys/inotify.h")
4
5 (constant (in-access        "IN_ACCESS"))
6 (constant (in-modify        "IN_MODIFY"))
7 (constant (in-attrib        "IN_ATTRIB"))
8 (constant (in-close-write   "IN_CLOSE_WRITE"))
9 (constant (in-close-nowrite "IN_CLOSE_NOWRITE"))
10 (constant (in-close         "IN_CLOSE"))
11 (constant (in-open          "IN_OPEN"))
12 (constant (in-moved-from    "IN_MOVED_FROM"))
13 (constant (in-moved-to      "IN_MOVED_TO"))
14 (constant (in-move          "IN_MOVE"))
15 (constant (in-create        "IN_CREATE"))
16 (constant (in-delete        "IN_DELETE"))
17 (constant (in-delete-self   "IN_DELETE_SELF"))
18 (constant (in-move-self     "IN_MOVE_SELF"))
19 (constant (in-unmount       "IN_UNMOUNT"))
20 (constant (in-q-overflow    "IN_Q_OVERFLOW"))
21 (constant (in-ignored       "IN_IGNORED"))
22 (constant (in-onlydir       "IN_ONLYDIR"))
23 (constant (in-dont-follow   "IN_DONT_FOLLOW"))
24 (constant (in-mask-add      "IN_MASK_ADD"))
25 (constant (in-isdir         "IN_ISDIR"))
26 (constant (in-oneshot       "IN_ONESHOT"))
27 (constant (in-all-events    "IN_ALL_EVENTS"))