Migrates subcalls to use xreq
[src/app-framework-binder.git] / src / afb-subcall.h
index e39d8bd..7d29e1a 100644 (file)
 
 #pragma once
 
-struct afb_context;
-struct afb_req;
+struct afb_xreq;
 struct json_object;
 
 extern void afb_subcall(
-               struct afb_context *context,
+               struct afb_xreq *caller,
                const char *api,
                const char *verb,
                struct json_object *args,
                void (*callback)(void*, int, struct json_object*),
-               void *closure,
-               struct afb_req req);
+               void *closure);
 
 extern void afb_subcall_internal_error(
                void (*callback)(void*, int, struct json_object*),