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
|
2020-02-16 03:02:23 +00:00
|
|
|
wf_impl_mountpoint_set_userdata(
|
|
|
|
struct wf_mountpoint * mountpoint,
|
|
|
|
void * user_data,
|
|
|
|
wf_mountpoint_userdata_dispose_fn * dispose);
|
2020-02-15 14:11:35 +00:00
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#endif
|