1
0
mirror of https://github.com/falk-werner/webfuse synced 2024-10-27 20:34:10 +00:00
falk-werner_webfuse/include/webfuse/provider/client.h

37 lines
653 B
C
Raw Normal View History

2019-03-26 22:04:53 +00:00
#ifndef WF_PROVIDER_CLIENT_H
#define WF_PROVIDER_CLIENT_H
#include "webfuse/provider/api.h"
#ifdef __cplusplus
extern "C"
{
#endif
struct wfp_client;
struct wfp_client_config;
extern WFP_API struct wfp_client * wfp_client_create(
struct wfp_client_config * config);
extern WFP_API void wfp_client_connect(
struct wfp_client * client,
char const * url);
extern WFP_API void wfp_client_disconnect(
struct wfp_client * client);
extern WFP_API void wfp_client_dispose(
struct wfp_client * client);
2019-04-26 18:51:24 +00:00
extern WFP_API void wfp_client_service(
struct wfp_client * client,
int timeout_ms);
2019-03-26 22:04:53 +00:00
#ifdef __cplusplus
}
#endif
#endif