0
0
mirror of https://github.com/mpv-player/mpv.git synced 2024-09-20 12:02:23 +02:00
mpv/player/lua.h
2013-12-17 01:15:48 +01:00

15 lines
373 B
C

#ifndef MP_LUA_H
#define MP_LUA_H
#include <stdbool.h>
struct MPContext;
void mp_lua_init(struct MPContext *mpctx);
void mp_lua_uninit(struct MPContext *mpctx);
void mp_lua_event(struct MPContext *mpctx, const char *name, const char *arg);
void mp_lua_script_dispatch(struct MPContext *mpctx, char *script_name,
int id, char *event);
#endif