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

removes shutdown method (#27)

This commit is contained in:
Falk Werner
2019-04-26 20:51:24 +02:00
committed by GitHub
parent 9130f00289
commit 09df34debc
10 changed files with 46 additions and 81 deletions

View File

@@ -17,11 +17,9 @@ extern WF_API struct wf_server * wf_server_create(
extern WF_API void wf_server_dispose(
struct wf_server * server);
extern WF_API void wf_server_run(
struct wf_server * server);
extern WF_API void wf_server_shutdown(
struct wf_server * server);
extern WF_API void wf_server_service(
struct wf_server * server,
int timeout_ms);
#ifdef __cplusplus
}

View File

@@ -24,12 +24,9 @@ extern WFP_API void wfp_client_disconnect(
extern WFP_API void wfp_client_dispose(
struct wfp_client * client);
extern WFP_API void wfp_client_run(
struct wfp_client * client);
extern WFP_API void wfp_client_shutdown(
struct wfp_client * client);
extern WFP_API void wfp_client_service(
struct wfp_client * client,
int timeout_ms);
#ifdef __cplusplus
}