1
0
mirror of https://github.com/falk-werner/webfuse-provider synced 2024-10-01 09:30:45 +00:00
falk-werner_webfuse-provider/include/jsonrpc/response.h

41 lines
578 B
C
Raw Normal View History

#ifndef WF_JSONRPC_RESPONSE_H
#define WF_JSONRPC_RESPONSE_H
#ifndef __cplusplus
#include <stdbool.h>
#include <stddef.h>
#else
#include <cstddef>
using std::size_t;
#endif
#include <jansson.h>
#ifdef __cplusplus
extern "C" {
#endif
struct jsonrpc_response
{
json_t * result;
json_t * error;
int id;
};
extern bool jsonrpc_is_response(
json_t * message);
extern void jsonrpc_response_init(
struct jsonrpc_response * response,
json_t * message);
extern void jsonrpc_response_cleanup(
struct jsonrpc_response * response);
#ifdef __cplusplus
}
#endif
#endif