mirror of
https://github.com/falk-werner/webfuse
synced 2024-10-27 20:34:10 +00:00
18 lines
245 B
C++
18 lines
245 B
C++
|
#ifndef WF_TEST_UTIL_MOUNTPOINT_FACTORY_HPP
|
||
|
#define WF_TEST_UTIL_MOUNTPOINT_FACTORY_HPP
|
||
|
|
||
|
extern "C"
|
||
|
{
|
||
|
|
||
|
struct wf_mountpoint;
|
||
|
|
||
|
extern wf_mountpoint *
|
||
|
webfuse_test_create_mountpoint(
|
||
|
char const * filesystem,
|
||
|
void * user_data);
|
||
|
|
||
|
|
||
|
}
|
||
|
|
||
|
#endif
|