1
0
mirror of https://github.com/falk-werner/webfuse-provider synced 2026-03-02 04:09:18 +00:00

added ondispose to mountpoint to allow custom cleanup

This commit is contained in:
Falk Werner
2020-02-15 15:50:32 +01:00
parent e727a9a54d
commit 6a94cea6f9
5 changed files with 76 additions and 1 deletions

View File

@@ -8,6 +8,10 @@ extern "C"
struct wf_mountpoint;
typedef void
wf_mountpoint_ondispose_fn(
struct wf_mountpoint * mountpoint);
extern struct wf_mountpoint *
wf_mountpoint_create(
char const * path);
@@ -20,6 +24,11 @@ extern char const *
wf_mountpoint_get_path(
struct wf_mountpoint const * mountpoint);
extern void
wf_mountpoint_set_ondispose(
struct wf_mountpoint * mountpoint,
wf_mountpoint_ondispose_fn * ondispose);
#ifdef __cplusplus
}
#endif