kiwmi/include/luak/luak.h

30 lines
792 B
C
Raw Normal View History

2019-10-18 21:32:29 +00:00
/* Copyright (c), Charlotte Meyer <dev@buffet.sh>
*
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this file,
* You can obtain one at https://mozilla.org/MPL/2.0/.
*/
2020-01-02 00:11:46 +00:00
#ifndef KIWMI_LUAK_LUAK_H
#define KIWMI_LUAK_LUAK_H
2019-10-18 21:32:29 +00:00
#include <stdbool.h>
#include <lua.h>
#include "server.h"
struct kiwmi_lua {
lua_State *L;
2019-12-31 00:09:06 +00:00
struct wl_list callbacks; // lua_callback::link
2020-01-03 18:40:11 +00:00
struct wl_global *global;
};
int luaK_callback_register_dispatch(lua_State *L);
2020-01-08 17:33:01 +00:00
int luaK_usertype_ref_equal(lua_State *L);
2020-01-02 00:11:46 +00:00
struct kiwmi_lua *luaK_create(struct kiwmi_server *server);
bool luaK_dofile(struct kiwmi_lua *lua, const char *config_path);
2020-01-02 00:11:46 +00:00
void luaK_destroy(struct kiwmi_lua *lua);
2019-10-18 21:32:29 +00:00
2020-01-02 00:11:46 +00:00
#endif /* KIWMI_LUAK_LUAK_H */