gendynapi.py: don't generate parameter for '...'

This commit is contained in:
Sylvain
2022-12-09 20:22:44 +01:00
parent 5f89987d7f
commit ea8c7df91b
4 changed files with 1764 additions and 1 deletions

View File

@@ -403,6 +403,10 @@ def add_dyn_api(proc):
if argtype == "void":
continue
# Special case, '...' has no parameter name
if argtype == "...":
continue
# Var name: a, b, c, ...
varname = chr(i)
i += 1