ImVector functions inclusion

This commit is contained in:
sonoro1234
2019-02-12 12:16:21 +01:00
parent 55f1afa2db
commit 0d864f94bd
13 changed files with 1846 additions and 301 deletions

View File

@@ -2121,6 +2121,24 @@ defs["structs"]["ImVec4"][4] = {}
defs["structs"]["ImVec4"][4]["name"] = "w"
defs["structs"]["ImVec4"][4]["type"] = "float"
defs["structs"]["ImVector"] = {}
defs["structs"]["ImVector"][1] = {}
defs["structs"]["ImVector"][1]["name"] = "Size"
defs["structs"]["ImVector"][1]["type"] = "int"
defs["structs"]["ImVector"][2] = {}
defs["structs"]["ImVector"][2]["name"] = "Capacity"
defs["structs"]["ImVector"][2]["type"] = "int"
defs["structs"]["ImVector"][3] = {}
defs["structs"]["ImVector"][3]["name"] = "Data"
defs["structs"]["ImVector"][3]["type"] = "T*"
defs["structs"]["ImVector"][4] = {}
defs["structs"]["ImVector"][4]["name"] = "value_type"
defs["structs"]["ImVector"][4]["type"] = "typedef T"
defs["structs"]["ImVector"][5] = {}
defs["structs"]["ImVector"][5]["name"] = "iterator"
defs["structs"]["ImVector"][5]["type"] = "typedef value_type*"
defs["structs"]["ImVector"][6] = {}
defs["structs"]["ImVector"][6]["name"] = "const_iterator"
defs["structs"]["ImVector"][6]["type"] = "typedef const value_type*"
defs["structs"]["Pair"] = {}
defs["structs"]["Pair"][1] = {}
defs["structs"]["Pair"][1]["name"] = "key"