2020-06-28 17:43:08 +00:00
|
|
|
#ifndef WF_IMPL_JSONRPC_RESPONSE_H
|
|
|
|
#define WF_IMPL_JSONRPC_RESPONSE_H
|
2020-02-28 22:17:41 +00:00
|
|
|
|
|
|
|
#ifndef __cplusplus
|
|
|
|
#include <stdbool.h>
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#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-07-16 20:36:12 +00:00
|
|
|
struct wf_json;
|
|
|
|
|
2020-06-28 17:43:08 +00:00
|
|
|
extern bool wf_impl_jsonrpc_is_response(
|
2020-07-16 20:36:12 +00:00
|
|
|
struct wf_json const * message);
|
2020-02-28 22:17:41 +00:00
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#endif
|