mirror of
https://github.com/falk-werner/webfuse-provider
synced 2024-10-27 20:44:10 +00:00
21 lines
289 B
C
21 lines
289 B
C
#ifndef WF_IMPL_UUID_MOUNTPOINT_H
|
|
#define WF_IMPL_UUID_MOUNTPOINT_H
|
|
|
|
#ifdef __cplusplus
|
|
extern "C"
|
|
{
|
|
#endif
|
|
|
|
struct wf_mountpoint;
|
|
|
|
extern struct wf_mountpoint *
|
|
wf_impl_uuid_mountpoint_create(
|
|
char const * root_path,
|
|
char const * filesystem);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif
|