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