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

32 lines
522 B
C
Raw Normal View History

#ifndef _WSFS_SERVER_H
#define _WSFS_SERVER_H
#include "wsfs/api.h"
struct wsfs_server;
struct wsfs_server_config;
#ifdef __cplusplus
extern "C"
{
#endif
extern WSFS_API struct wsfs_server * wsfs_server_create(
struct wsfs_server_config * config);
extern WSFS_API void wsfs_server_dispose(
struct wsfs_server * server);
extern WSFS_API void wsfs_server_run(
struct wsfs_server * server);
extern WSFS_API void wsfs_server_shutdown(
struct wsfs_server * server);
#ifdef __cplusplus
}
#endif
#endif