diff options
-rw-r--r-- | lib.c | 1 | ||||
-rw-r--r-- | module.h | 1 |
2 files changed, 2 insertions, 0 deletions
@@ -1761,6 +1761,7 @@ const struct ut_ops ut = { .set_type = ut_set_extended_type, .get_type = ut_get_extended_type, .new_object = ut_new_object, + .invoke = ut_invoke, }; static const struct { const char *name; ut_c_fn *func; } functions[] = { @@ -26,6 +26,7 @@ struct ut_ops { struct json_object *(*set_type)(struct json_object *, struct json_object *, const char *, void *); void **(*get_type)(struct json_object *, const char *); struct json_object *(*new_object)(struct json_object *); + struct json_object *(*invoke)(struct ut_state *, uint32_t, struct json_object *, struct json_object *, struct json_object *); }; extern const struct ut_ops ut; |