#ifndef WSFS_ADAPTER_JSONRPC_RESPONSE_H #define WSFS_ADAPTER_JSONRPC_RESPONSE_H #ifndef __cplusplus #include #else #include using std::size_t; #endif #include #include "wsfs/adapter/status.h" 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