2024-02-03 10:08:22 +08:00
|
|
|
#include "lua-bindings/auto/axlua_video_auto.hpp"
|
2024-03-28 21:07:51 +08:00
|
|
|
#if defined(AX_ENABLE_MEDIA)
|
2023-06-10 22:05:49 +08:00
|
|
|
#include "ui/UIMediaPlayer.h"
|
2024-02-03 10:08:22 +08:00
|
|
|
#include "lua-bindings/manual/tolua_fix.h"
|
|
|
|
#include "lua-bindings/manual/LuaBasicConversions.h"
|
2022-08-29 20:51:22 +08:00
|
|
|
TOLUA_API int register_all_ax_video(lua_State* tolua_S)
|
2019-11-23 20:27:39 +08:00
|
|
|
{
|
|
|
|
tolua_open(tolua_S);
|
|
|
|
|
2022-07-12 21:31:54 +08:00
|
|
|
tolua_module(tolua_S,"axui",0);
|
|
|
|
tolua_beginmodule(tolua_S,"axui");
|
2019-11-23 20:27:39 +08:00
|
|
|
|
|
|
|
|
|
|
|
tolua_endmodule(tolua_S);
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2024-03-28 21:07:51 +08:00
|
|
|
#endif
|