2020-02-29 01:32:03 +00:00
|
|
|
#ifndef JSONRPC_RESPONSE_H
|
|
|
|
#define JSONRPC_RESPONSE_H
|
2020-02-28 22:17:41 +00:00
|
|
|
|
|
|
|
#ifndef __cplusplus
|
|
|
|
#include <stdbool.h>
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#include <jansson.h>
|
2020-02-29 01:32:03 +00:00
|
|
|
#include <jsonrpc/api.h>
|
2020-02-28 22:17:41 +00:00
|
|
|
|
|
|
|
#ifdef __cplusplus
|
2020-02-29 01:32:03 +00:00
|
|
|
extern "C"
|
2020-02-28 22:17:41 +00:00
|
|
|
{
|
2020-02-29 01:32:03 +00:00
|
|
|
#endif
|
2020-02-28 22:17:41 +00:00
|
|
|
|
2020-02-29 01:32:03 +00:00
|
|
|
extern JSONRPC_API bool jsonrpc_is_response(
|
2020-02-28 22:17:41 +00:00
|
|
|
json_t * message);
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#endif
|