1
0
mirror of https://github.com/falk-werner/webfuse-provider synced 2024-10-27 20:44:10 +00:00
falk-werner_webfuse-provider/include/webfuse/adapter/mountpoint.h

38 lines
619 B
C
Raw Normal View History

2020-02-13 20:48:42 +00:00
#ifndef WF_ADAPTER_MOUNTPOINT_H
#define WF_ADAPTER_MOUNTPOINT_H
#ifdef __cplusplus
extern "C"
{
#endif
struct wf_mountpoint;
typedef void
wf_mountpoint_ondispose_fn(
struct wf_mountpoint * mountpoint);
2020-02-13 20:48:42 +00:00
extern struct wf_mountpoint *
wf_mountpoint_create(
char const * path);
extern void
2020-02-15 14:11:35 +00:00
wf_mountpoint_dispose(
2020-02-13 20:48:42 +00:00
struct wf_mountpoint * mountpoint);
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);
2020-02-13 20:48:42 +00:00
#ifdef __cplusplus
}
#endif
#endif