lua: add Core.get_vm_type() method
This commit is contained in:
@@ -164,6 +164,15 @@ core_get_info (lua_State *L)
|
|||||||
return 1;
|
return 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
static int
|
||||||
|
core_get_vm_type (lua_State *L)
|
||||||
|
{
|
||||||
|
WpCore * core = get_wp_core (L);
|
||||||
|
g_autofree gchar *vm = wp_core_get_vm_type (core);
|
||||||
|
lua_pushstring (L, vm);
|
||||||
|
return 1;
|
||||||
|
}
|
||||||
|
|
||||||
static int
|
static int
|
||||||
core_idle_add (lua_State *L)
|
core_idle_add (lua_State *L)
|
||||||
{
|
{
|
||||||
@@ -259,6 +268,7 @@ core_require_api (lua_State *L)
|
|||||||
|
|
||||||
static const luaL_Reg core_funcs[] = {
|
static const luaL_Reg core_funcs[] = {
|
||||||
{ "get_info", core_get_info },
|
{ "get_info", core_get_info },
|
||||||
|
{ "get_vm_type", core_get_vm_type },
|
||||||
{ "idle_add", core_idle_add },
|
{ "idle_add", core_idle_add },
|
||||||
{ "timeout_add", core_timeout_add },
|
{ "timeout_add", core_timeout_add },
|
||||||
{ "sync", core_sync },
|
{ "sync", core_sync },
|
||||||
|
Reference in New Issue
Block a user