1
0
mirror of https://github.com/falk-werner/webfuse-provider synced 2024-09-30 20:20:46 +00:00
falk-werner_webfuse-provider/include/wsfs/adapter/server.h

32 lines
548 B
C
Raw Normal View History

2019-02-25 20:35:38 +00:00
#ifndef WSFS_ADAPTER_SERVER_H
#define WSFS_ADAPTER_SERVER_H
#include "wsfs/adapter/api.h"
struct wsfs_server;
struct wsfs_server_config;
#ifdef __cplusplus
extern "C"
{
#endif
2019-02-25 20:39:41 +00:00
extern WSFSA_API struct wsfs_server * wsfs_server_create(
struct wsfs_server_config * config);
2019-02-25 20:39:41 +00:00
extern WSFSA_API void wsfs_server_dispose(
struct wsfs_server * server);
2019-02-25 20:39:41 +00:00
extern WSFSA_API void wsfs_server_run(
struct wsfs_server * server);
2019-02-25 20:39:41 +00:00
extern WSFSA_API void wsfs_server_shutdown(
struct wsfs_server * server);
#ifdef __cplusplus
}
#endif
#endif