#ifndef WSFS_ADAPTER_IMPL_JSONRPC_RESPONSE_H #define WSFS_ADAPTER_IMPL_JSONRPC_RESPONSE_H #ifndef __cplusplus #include #else #include using std::size_t; #endif #include #include "wsfs/status.h" #ifdef __cplusplus extern "C" { #endif struct jsonrpc_response { wsfs_status status; int id; json_t * result; }; extern void jsonrpc_response_init( struct jsonrpc_response * response, char const * buffer, size_t buffer_length); extern void jsonrpc_response_cleanup( struct jsonrpc_response * response); #ifdef __cplusplus } #endif #endif