custom.lua
资源名称:vlc-1.0.5.zip [点击查看]
上传用户:kjfoods
上传日期:2020-07-06
资源大小:29949k
文件大小:0k
源码类别:
midi
开发平台:
Unix_Linux
- local _G = _G
- module("custom",package.seeall)
- local dialogs_cache = {}
- function dialog_preload(name)
- if not dialogs_cache[name] then
- -- Cache the dialogs
- dialogs_cache[name] = process(http_dir.."/dialogs/"..name)
- end
- end
- function dialog(name)
- dialog_preload(name)
- dialogs_cache[name]()
- end
- function dialogs(...)
- for i=1,select("#",...) do
- dialog(select(i,...))
- end
- end
- _G.dialogs = dialogs
- _G.vlm = vlc.vlm()