src/dbfs.h
changeset 30 d8fabd347a8e
parent 28 e944453ca924
equal deleted inserted replaced
29:5de62ca9a5aa 30:d8fabd347a8e
    13 struct dbfs;
    13 struct dbfs;
    14 
    14 
    15 /*
    15 /*
    16  * Create the evsql and evfuse contexts and run the fs
    16  * Create the evsql and evfuse contexts and run the fs
    17  */
    17  */
    18 struct dbfs *dbfs_open (struct event_base *ev_base, struct fuse_args *args, const char *db_conninfo);
    18 struct dbfs *dbfs_new (struct event_base *ev_base, struct fuse_args *args, const char *db_conninfo);
    19 
    19 
    20 /*
    20 /*
    21  * Release the dbfs's resources and free it
    21  * Release the dbfs's resources and free it
    22  */
    22  */
    23 void dbfs_release (struct dbfs *ctx);
    23 void dbfs_free (struct dbfs *ctx);
    24 
    24 
    25 #endif /* DBFS_H */
    25 #endif /* DBFS_H */