src/evfuse.h
changeset 56 9dfc861273e5
parent 42 40a3b13ffc9d
child 57 527d23bf6441
--- a/src/evfuse.h	Tue Nov 18 02:06:52 2008 +0200
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,27 +0,0 @@
-#ifndef EVFUSE_H
-#define EVFUSE_H
-
-#define FUSE_USE_VERSION 26
-
-#include <event2/event.h>
-#include <fuse/fuse_lowlevel.h>
-
-/*
- * A wrapper for the fuse + libevent context
- */
-struct evfuse;
-
-/*
- * Create a new new evfuse context.
- */
-struct evfuse *evfuse_new (struct event_base *evbase, struct fuse_args *args, struct fuse_lowlevel_ops *llops, void *cb_data);
-
-/*
- * Close and free evfuse context.
- *
- * Safe to call after errors/llops.destroy
- */
-void evfuse_free (struct evfuse *ctx);
-
-#endif /* EVFUSE_H */
-