2020-06-28 17:43:08 +00:00
|
|
|
#ifndef WF_IMPL_JSONRPC_PROXY_FINISHED_FN_H
|
|
|
|
#define WF_IMPL_JSONRPC_PROXY_FINISHED_FN_H
|
2020-02-29 01:32:03 +00:00
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C"
|
|
|
|
{
|
|
|
|
#endif
|
|
|
|
|
2020-07-16 17:30:18 +00:00
|
|
|
struct wf_jsonrpc_error;
|
2020-07-16 20:36:12 +00:00
|
|
|
struct wf_json;
|
2020-07-16 17:30:18 +00:00
|
|
|
|
2020-03-01 15:55:58 +00:00
|
|
|
typedef void wf_jsonrpc_proxy_finished_fn(
|
2020-02-29 01:32:03 +00:00
|
|
|
void * user_data,
|
2020-07-16 20:36:12 +00:00
|
|
|
struct wf_json const * result,
|
2020-07-16 17:30:18 +00:00
|
|
|
struct wf_jsonrpc_error const * error);
|
2020-02-29 01:32:03 +00:00
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#endif
|