2019-02-25 20:35:38 +00:00
|
|
|
#ifndef WSFS_ADAPTER_SERVER_H
|
|
|
|
#define WSFS_ADAPTER_SERVER_H
|
2019-02-05 23:58:51 +00:00
|
|
|
|
2019-02-25 19:17:13 +00:00
|
|
|
#include "wsfs/adapter/api.h"
|
2019-02-05 23:58:51 +00:00
|
|
|
|
|
|
|
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(
|
2019-02-05 23:58:51 +00:00
|
|
|
struct wsfs_server_config * config);
|
|
|
|
|
2019-02-25 20:39:41 +00:00
|
|
|
extern WSFSA_API void wsfs_server_dispose(
|
2019-02-05 23:58:51 +00:00
|
|
|
struct wsfs_server * server);
|
|
|
|
|
2019-02-25 20:39:41 +00:00
|
|
|
extern WSFSA_API void wsfs_server_run(
|
2019-02-05 23:58:51 +00:00
|
|
|
struct wsfs_server * server);
|
|
|
|
|
2019-02-25 20:39:41 +00:00
|
|
|
extern WSFSA_API void wsfs_server_shutdown(
|
2019-02-05 23:58:51 +00:00
|
|
|
struct wsfs_server * server);
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
|
|
#endif
|