revised api file loading

This commit is contained in:
crazybutcher
2011-04-07 23:41:07 +02:00
parent 8633030248
commit d41ca43659
18 changed files with 2406 additions and 2414 deletions

16
api/lua/wxwidgets.lua Normal file
View File

@@ -0,0 +1,16 @@
local api = {}
for key in pairs(wx) do
api[key] = {
type = (type(wx[key]) == "function" and "function" or "value"),
description = "",
returns = "",
}
end
return {
wx = {
type = "lib",
description = "WX lib",
childs = api
}
}