mirror of
https://github.com/falk-werner/webfuse-provider
synced 2024-10-27 20:44:10 +00:00
28 lines
435 B
C
28 lines
435 B
C
#ifndef WF_ADAPTER_IMPL_SERVER_H
|
|
#define WF_ADAPTER_IMPL_SERVER_H
|
|
|
|
#ifdef __cplusplus
|
|
extern "C"
|
|
{
|
|
#endif
|
|
|
|
struct wf_server;
|
|
struct wf_server_config;
|
|
|
|
extern struct wf_server * wf_impl_server_create(
|
|
struct wf_server_config * config);
|
|
|
|
extern void wf_impl_server_dispose(
|
|
struct wf_server * server);
|
|
|
|
extern void wf_impl_server_service(
|
|
struct wf_server * server,
|
|
int timeout_ms);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
|
|
#endif
|