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:
@@ -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(
|
||||
|
||||
@@ -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)
|
||||
{
|
||||
|
||||
@@ -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);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user