This commit is contained in:
Бранимир Караџић
2019-04-20 21:04:36 -07:00
parent 56cbbb0283
commit 4a07ab392f
5 changed files with 106 additions and 64 deletions

View File

@@ -6,25 +6,27 @@ local codegen = require "codegen"
local doxygen = require "doxygen"
local func_actions = {
c99 = "\n",
c99decl = "\n",
cppdecl = "\n",
c99 = "\n",
c99decl = "\n",
cppdecl = "\n",
interface_struct = "\n\t",
interface_import = ",\n\t\t\t",
c99_interface = "\n",
cpp_interface = "\n",
c99_functionid = "\n\t",
cpp_functionid = "\n\t\t",
c99_interface = "\n",
cpp_interface = "\n",
c99_functionid = "\n\t",
cpp_functionid = "\n\t\t",
}
local type_actions = {
enums = "\n",
cenums = "\n",
structs = "\n",
cstructs = "\n",
handles = "\n",
chandles = "\n",
funcptrs = "\n",
enums = "\n",
cenums = "\n",
structs = "\n",
cstructs = "\n",
handles = "\n",
chandles = "\n",
funcptrs = "\n",
cfuncptrs = "\n",
}