summaryrefslogtreecommitdiffstats
path: root/afm-client/bower_components/foundation-icon-fonts/svgs/fi-x.svg
diff options
context:
space:
mode:
authorJan-Simon Möller <jsmoeller@linuxfoundation.org>2020-02-11 18:08:14 +0100
committerJan-Simon Möller <jsmoeller@linuxfoundation.org>2020-02-11 18:08:14 +0100
commit8724050d1903b5e4734dfabe74a0f41907064f05 (patch)
treee9d19a4e0cd26c9cf67258dae9571b50233fca88 /afm-client/bower_components/foundation-icon-fonts/svgs/fi-x.svg
parentef9cf9417927b312ca64b27297e1b1506389145d (diff)
This updates the gitreview file in the project . Signed-off-by: Jan-Simon Möller <jsmoeller@linuxfoundation.org> Change-Id: I8399080befeaf2707df0a6ca48a436f1e0c36d13
Diffstat (limited to 'afm-client/bower_components/foundation-icon-fonts/svgs/fi-x.svg')
0 files changed, 0 insertions, 0 deletions
le #ifdef CONTROL_SUPPORT_LUA #include "lua.h" #include "lauxlib.h" #include "lualib.h" #endif #include "ctl-timer.h" PUBLIC int LuaLibInit (); typedef int (*Lua2cFunctionT)(char *funcname, json_object *argsJ); typedef int (*Lua2cWrapperT) (lua_State* luaState, char *funcname, Lua2cFunctionT callback); #define CTLP_LUALOAD Lua2cWrapperT Lua2cWrap; #define CTLP_LUA2C(FuncName, label,argsJ, context) static int FuncName(char*label,json_object*argsJ);\ int lua2c_ ## FuncName(lua_State* luaState){return((*Lua2cWrap)(luaState, MACRO_STR_VALUE(FuncName), FuncName, PLUGIN_NAME));};\ static int FuncName(char* label, json_object* argsJ, void* context) typedef enum { LUA_DOCALL, LUA_DOSTRING, LUA_DOSCRIPT, } LuaDoActionT; PUBLIC int LuaConfigLoad(); PUBLIC int LuaConfigExec(); PUBLIC void LuaL2cNewLib(const char *label, luaL_Reg *l2cFunc, int count); PUBLIC int Lua2cWrapper(lua_State* luaState, char *funcname, Lua2cFunctionT callback); PUBLIC int LuaCallFunc (CtlActionT *action, json_object *queryJ) ; PUBLIC void ctlapi_lua_docall (afb_req request); PUBLIC void ctlapi_lua_dostring (afb_req request); PUBLIC void ctlapi_lua_doscript (afb_req request); #endif