2020-02-15 14:11:35 +00:00
|
|
|
#ifndef WF_IMPL_MOUNTPOINT_H
|
|
|
|
#define WF_IMPL_MOUNTPOINT_H
|
|
|
|
|
2020-02-15 14:50:32 +00:00
|
|
|
#include "webfuse/adapter/mountpoint.h"
|
|
|
|
|
2020-02-15 14:11:35 +00:00
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C"
|
|
|
|
{
|
|
|
|
#endif
|
|
|
|
|
|
|
|
extern struct wf_mountpoint *
|
|
|
|
wf_impl_mountpoint_create(
|
|
|
|
char const * path);
|
|
|
|
|
|
|
|
extern void
|
|
|
|
wf_impl_mountpoint_dispose(
|
|
|
|
struct wf_mountpoint * mountpoint);
|
|
|
|
|
|
|
|
extern char const *
|
|
|
|
wf_impl_mountpoint_get_path(
|
|
|
|
struct wf_mountpoint const * mountpoint);
|
|
|
|
|
2020-02-15 14:50:32 +00:00
|
|
|
extern void
|
|
|
|
wf_impl_mountpoint_set_ondispose(
|
|
|
|
struct wf_mountpoint * mointpoint,
|
|
|
|
wf_mountpoint_ondispose_fn * ondispose);
|
2020-02-15 14:11:35 +00:00
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#endif
|