1
0
mirror of https://github.com/falk-werner/webfuse-provider synced 2024-09-29 14:20:44 +00:00
falk-werner_webfuse-provider/lib/wsfs/adapter/jsonrpc/response.h

39 lines
608 B
C
Raw Normal View History

2019-02-25 20:35:38 +00:00
#ifndef WSFS_ADAPTER_JSONRPC_RESPONSE_H
#define WSFS_ADAPTER_JSONRPC_RESPONSE_H
2019-02-09 02:08:02 +00:00
#ifndef __cplusplus
#include <stddef.h>
#else
#include <cstddef>
using std::size_t;
#endif
#include <jansson.h>
#include "wsfs/adapter/status.h"
2019-02-09 02:08:02 +00:00
struct wsfs_jsonrpc_response
{
wsfs_status status;
int id;
json_t * result;
};
#ifdef __cplusplus
extern "C" {
#endif
extern void wsfs_jsonrpc_response_init(
struct wsfs_jsonrpc_response * response,
char const * buffer,
size_t buffer_length);
extern void wsfs_jsonrpc_response_cleanup(
struct wsfs_jsonrpc_response * response);
#ifdef __cplusplus
}
#endif
#endif