2019-03-26 22:04:53 +00:00
|
|
|
#ifndef WF_ADAPTER_IMPL_JSONRPC_RESPONSE_H
|
|
|
|
#define WF_ADAPTER_IMPL_JSONRPC_RESPONSE_H
|
|
|
|
|
|
|
|
#ifndef __cplusplus
|
2019-04-01 20:15:12 +00:00
|
|
|
#include <stdbool.h>
|
2019-03-26 22:04:53 +00:00
|
|
|
#include <stddef.h>
|
|
|
|
#else
|
|
|
|
#include <cstddef>
|
|
|
|
using std::size_t;
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#include <jansson.h>
|
|
|
|
#include "webfuse/core/status.h"
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
|
|
|
struct wf_impl_jsonrpc_response
|
|
|
|
{
|
|
|
|
wf_status status;
|
|
|
|
int id;
|
|
|
|
json_t * result;
|
|
|
|
};
|
|
|
|
|
2019-04-01 20:15:12 +00:00
|
|
|
extern bool wf_impl_jsonrpc_is_response(
|
|
|
|
json_t * message);
|
|
|
|
|
2019-03-26 22:04:53 +00:00
|
|
|
extern void wf_impl_jsonrpc_response_init(
|
|
|
|
struct wf_impl_jsonrpc_response * response,
|
2019-04-01 20:15:12 +00:00
|
|
|
json_t * message);
|
2019-03-26 22:04:53 +00:00
|
|
|
|
|
|
|
extern void wf_impl_jsonrpc_response_cleanup(
|
|
|
|
struct wf_impl_jsonrpc_response * response);
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|