diff options
author | Romain Forlot <romain.forlot@iot.bzh> | 2018-05-06 14:24:42 +0200 |
---|---|---|
committer | Romain Forlot <romain.forlot@iot.bzh> | 2018-12-13 15:02:54 +0100 |
commit | 6fed20d35d556afa95537a2be0b0efc8a2dd24c7 (patch) | |
tree | ab073906b708cfb2fd7811de5e440e27515087da /ctl-lib/ctl-plugin.h | |
parent | fc2e5bc18026460bddcfd84c74e880193079a5c9 (diff) |
Upgrade config schema
Change the way to load LUA scripts. They are now considerate
as Plugin and loads with them.
This imply rework of how to search and find plugins as
well as the way to load LUA.
Also load an harcoded LUA scripts providing LUA helpers
and managing global variables lock unlock mechanism
Change-Id: I64e38aa27278d0cfdca787155db2d0c89953f905
Signed-off-by: Romain Forlot <romain.forlot@iot.bzh>
Diffstat (limited to 'ctl-lib/ctl-plugin.h')
-rw-r--r-- | ctl-lib/ctl-plugin.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/ctl-lib/ctl-plugin.h b/ctl-lib/ctl-plugin.h index eaceea5..5d505ac 100644 --- a/ctl-lib/ctl-plugin.h +++ b/ctl-lib/ctl-plugin.h @@ -30,6 +30,9 @@ extern "C" { #include <json-c/json.h> +#define CONTROL_PLUGIN_EXT ".ctlso" +#define CONTROL_SCRIPT_EXT ".lua" + // Waiting for a clean AppFW-V3 API #ifdef USE_API_DYN #define AFB_BINDING_VERSION dyn @@ -212,7 +215,7 @@ typedef struct { } subcall; struct { - const char* load; + const char* plugin; const char* funcname; } lua; |