Changed everything to inotify naming.
[cl-inotify.git] / package.lisp
index 0f7b202..ac6380f 100644 (file)
@@ -1,22 +1,25 @@
 (in-package #:cl-user)
 
-(defpackage cl-notify
-  (:use #:cl #:cffi #:utils-frahm #:anaphora)
+(defpackage cl-inotify
+  (:use #:cl #:cffi)
   (:export ;;; used types for documentation
           #:inotify-add/read-flag
           #:inotify-read-flag
           #:inotify-add-flag
 
-          #:close-notify
+          ;;; very raw
+          #:read-raw-event-from-stream
+
+          #:close-inotify
 
           ;;; event parsing functions
-          #:make-unregistered-notify
-          #:read-raw-event
+          #:make-unregistered-inotify
+          #:read-event-from-stream
           #:watch-raw
           #:unwatch-raw
 
           ;;; enhanced functionality
-          #:make-notify
+          #:make-inotify
           #:watchedp
           #:watch
           #:unwatch
@@ -27,6 +30,5 @@
           ;;; convenience functions
           #:list-watched
           #:do-events
-          #:read-events
-          )
-  (:documentation "A binding for the LINUX inotify(7) API."))
+          #:next-events)
+  (:documentation "A binding (not only?) for the LINUX inotify(7) API."))