1
0
mirror of https://github.com/falk-werner/webfuse-provider synced 2026-03-02 04:09:18 +00:00

renamed function: wf_impl_server_protocol_create2 to ..create: remove of uuid mountpoint was already API breaking

This commit is contained in:
Falk Werner
2020-03-21 09:18:04 +01:00
parent 43c989e7af
commit 425e017bc4
5 changed files with 6 additions and 17 deletions

View File

@@ -38,11 +38,11 @@ void wf_server_interrupt(
// server protocol
struct wf_server_protocol * wf_server_protocol_create2(
struct wf_server_protocol * wf_server_protocol_create(
wf_create_mountpoint_fn * create_mountpoint,
void * create_mountpoint_context)
{
return wf_impl_server_protocol_create2(create_mountpoint, create_mountpoint_context);
return wf_impl_server_protocol_create(create_mountpoint, create_mountpoint_context);
}
void wf_server_protocol_dispose(

View File

@@ -80,7 +80,7 @@ static int wf_impl_server_protocol_callback(
return 0;
}
struct wf_server_protocol * wf_impl_server_protocol_create2(
struct wf_server_protocol * wf_impl_server_protocol_create(
wf_create_mountpoint_fn * create_mountpoint,
void * create_mountpoint_context)
{

View File

@@ -36,7 +36,7 @@ extern void wf_impl_server_protocol_init(
extern void wf_impl_server_protocol_cleanup(
struct wf_server_protocol * protocol);
extern WF_API struct wf_server_protocol * wf_impl_server_protocol_create2(
extern WF_API struct wf_server_protocol * wf_impl_server_protocol_create(
wf_create_mountpoint_fn * create_mountpoint,
void * create_mountpoint_context);