Cleanup, make one function conditional.
[cl-inotify.git] / package.lisp
index 1951899..0500416 100644 (file)
@@ -30,6 +30,7 @@
 
 (defpackage cl-inotify
   (:use #:cl #:cffi)
+  (:import-from #:osicat-posix #:defsyscall)
   (:export ;;; used types for documentation
           #:inotify-add/read-flag
           #:inotify-read-flag
@@ -75,5 +76,8 @@
 
           ;;; macros
           #:with-inotify
-          #:with-unregistered-inotify)
+          #:with-unregistered-inotify
+          #:with-inotify-event-handler
+
+          #:run-inotify-program)
   (:documentation "A binding (not only?) for the LINUX inotify(7) API."))