mirror of
https://github.com/falk-werner/webfuse-provider
synced 2024-10-27 20:44:10 +00:00
34 lines
594 B
C
34 lines
594 B
C
#ifndef WF_IMPL_MOUNTPOINT_H
|
|
#define WF_IMPL_MOUNTPOINT_H
|
|
|
|
#include "webfuse/adapter/mountpoint.h"
|
|
|
|
#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);
|
|
|
|
extern void
|
|
wf_impl_mountpoint_set_userdata(
|
|
struct wf_mountpoint * mountpoint,
|
|
void * user_data,
|
|
wf_mountpoint_userdata_dispose_fn * dispose);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif
|