mirror of
https://github.com/falk-werner/webfuse
synced 2024-10-27 20:34:10 +00:00
30 lines
477 B
C
30 lines
477 B
C
|
#ifndef WSFS_ADAPTER_SERVER_H
|
||
|
#define WSFS_ADAPTER_SERVER_H
|
||
|
|
||
|
struct wsfs_server;
|
||
|
struct wsfs_server_config;
|
||
|
|
||
|
#ifdef __cplusplus
|
||
|
extern "C"
|
||
|
{
|
||
|
#endif
|
||
|
|
||
|
extern struct wsfs_server * wsfs_server_create(
|
||
|
struct wsfs_server_config * config);
|
||
|
|
||
|
extern void wsfs_server_dispose(
|
||
|
struct wsfs_server * server);
|
||
|
|
||
|
extern void wsfs_server_run(
|
||
|
struct wsfs_server * server);
|
||
|
|
||
|
extern void wsfs_server_shutdown(
|
||
|
struct wsfs_server * server);
|
||
|
|
||
|
#ifdef __cplusplus
|
||
|
}
|
||
|
#endif
|
||
|
|
||
|
|
||
|
#endif
|