custom.lua
上传用户:kjfoods
上传日期:2020-07-06
资源大小:29949k
文件大小:0k
源码类别:

midi

开发平台:

Unix_Linux

  1. local _G = _G
  2. module("custom",package.seeall)
  3. local dialogs_cache = {}
  4. function dialog_preload(name)
  5.     if not dialogs_cache[name] then
  6.         -- Cache the dialogs
  7.         dialogs_cache[name] = process(http_dir.."/dialogs/"..name)
  8.     end
  9. end
  10. function dialog(name)
  11.     dialog_preload(name)
  12.     dialogs_cache[name]()
  13. end
  14. function dialogs(...)
  15.     for i=1,select("#",...) do
  16.         dialog(select(i,...))
  17.     end
  18. end
  19. _G.dialogs = dialogs
  20. _G.vlm = vlc.vlm()