diff --git a/README.md b/README.md index 56b6774..7d1ad6b 100644 --- a/README.md +++ b/README.md @@ -57,12 +57,13 @@ Notes: * defaults : a collection in which key is argument name and value is the default value. * manual : will be true if this function is hand-written (not generated) * isvararg : is set if some argument is a vararg - * constructor : is set if the function is a constructor for a class - * destructor : is set if the function is a destructor for a class + * constructor : is set if the function is a constructor for a class. + * destructor : is set if the function is a destructor for a class but not just a default destructor. + * realdestructor : is set if the function is a destructor for a class * templated : is set if the function belongs to a templated class (ImVector) * templatedgen: is set if the function belongs to a struct generated from template (ImVector_ImWchar) * nonUDT : if present the original function was returning a user defined type so that signature has been changed to accept a pointer to the UDT as first argument. - * location : name of the header file this function comes from. (imgui, internal, imgui_impl_xxx) + * location : name of the header file and linenumber this function comes from. (imgui:000, internal:123, imgui_impl_xxx:123) * is_static_function : is setted when it is an struct static function. ### structs_and_enums description * Is is a collection with three items: @@ -76,7 +77,7 @@ Notes: * name : the name of the struct member * size : the number of array elements (when it is an array) * bitfield : the bitfield width (in case it is a bitfield) - * under key locations we get the locations collection in which each key is the enum tagname or the struct name and the value is the name of the header file this comes from. + * under key locations we get the locations collection in which each key is the enum tagname or the struct name and the value is the name of the header file and line number this comes from. # usage * use whatever method is in ImGui c++ namespace in the original [imgui.h](https://github.com/ocornut/imgui/blob/master/imgui.h) by prepending `ig` diff --git a/cimgui.cpp b/cimgui.cpp index 55a0f8f..ec9d18f 100644 --- a/cimgui.cpp +++ b/cimgui.cpp @@ -3,6 +3,9 @@ //with imgui_internal.h api #include "./imgui/imgui.h" +#ifdef CIMGUI_FREETYPE +#include "./imgui/misc/freetype/imgui_freetype.h" +#endif #include "./imgui/imgui_internal.h" #include "cimgui.h" diff --git a/cimgui.h b/cimgui.h index 8eae3de..c9d986b 100644 --- a/cimgui.h +++ b/cimgui.h @@ -102,6 +102,7 @@ typedef struct ImDrawList ImDrawList; typedef struct ImDrawData ImDrawData; typedef struct ImDrawCmd ImDrawCmd; typedef struct ImDrawChannel ImDrawChannel; + struct ImDrawChannel; struct ImDrawCmd; struct ImDrawData; diff --git a/generator/cpp2ffi.lua b/generator/cpp2ffi.lua index af98d8e..617b4d8 100644 --- a/generator/cpp2ffi.lua +++ b/generator/cpp2ffi.lua @@ -113,13 +113,22 @@ local function strsplit(str, pat) end return t,t2 end +M.strsplit = strsplit local function split_comment(line) - local comment = line:match("(%s*//.*)") or "" + local comment = line:match("(%s*//.*)") --or "" line = line:gsub("%s*//.*","") line = line:gsub("%s*$","") return line,comment end M.split_comment = split_comment +local function clean_comments(txt) + local comms = "" + for comm in txt:gmatch("(%s*//[^\n]*)") do + comms = comms..comm + end + txt = txt:gsub("%s*//[^\n]*","") + return txt,comms +end local function strip(cad) return cad:gsub("^%s*(.-)%s*$","%1") --remove initial and final spaces end @@ -274,10 +283,12 @@ local function getRE() vardef_re = "^\n*([^;{}]+;)", functionD_re = "^([^;{}]-%b()[\n%s%w]*%b{}%s-;*)", --functionD_re = "^([^;{}]-%b()[^{}%(%)]*%b{})", - functype_re = "^%s*[%w%s%*]+%(%*[%w_]+%)%([^%(%)]*%)%s*;" + functype_re = "^%s*[%w%s%*]+%(%*[%w_]+%)%([^%(%)]*%)%s*;", + comment_re = "^%s*//[^\n]*", + comment2_re = "^%s*/%*.-%*/" } - local resN = {"functypedef_re","functype_re","function_re","functionD_re","typedef_st_re","struct_re","enum_re","union_re","namespace_re","class_re","typedef_re","vardef_re"} + local resN = {"comment2_re","comment_re","functypedef_re","functype_re","function_re","functionD_re","typedef_st_re","struct_re","enum_re","union_re","namespace_re","class_re","typedef_re","vardef_re"} return res,resN end @@ -286,7 +297,7 @@ local function isLeaf(re) end M.getRE = getRE --takes preprocesed file in table cdefsor and returns items -local function parseItems(txt,dumpit,loca) +local function parseItems(txt,linenumdict, itparent, dumpit) --assert(loca) --dumpit = true local res,resN = getRE() @@ -295,6 +306,7 @@ local function parseItems(txt,dumpit,loca) local item local items = {} local itemarr = {} + local outercomms = {} while true do local found = false for ire,re_name in ipairs(resN) do @@ -302,12 +314,68 @@ local function parseItems(txt,dumpit,loca) local i,e = txt:find(re,ini) if i then item = txt:sub(i,e) + ------------------ + --[[ --if re~=functionD_re then --skip defined functions item = item:gsub("extern __attribute__%(%(dllexport%)%) ","") table.insert(itemarr,{re_name=re_name,item=item,locat=loca}) --end items[re_name] = items[re_name] or {} table.insert(items[re_name],item) + --]] + -------------------- + if re_name=="comment_re" or re_name=="comment2_re" then + --[[ + table.insert(outercomms,item) + -- comments to previous item + if itemarr[#itemarr] then + local prev = itemarr[#itemarr].comments or "" + itemarr[#itemarr].comments = prev .. item + end + --]] + --comments begining with \n will go to next item + if item:match("^%s*\n") then + table.insert(outercomms,item) + else + -- comments to previous item + if itemarr[#itemarr] then + local prev = itemarr[#itemarr].comments or "" + itemarr[#itemarr].comments = prev .. item + end + end + else + --item,inercoms = clean_comments(item) + local itemold = item + item = item:gsub("extern __attribute__%(%(dllexport%)%) ","") + local comments = table.concat(outercomms,"\n") --..inercoms + if comments=="" then comments=nil end + outercomms = {} + local loca + if linenumdict then + local itemfirstline = itemold:match("[^\n]+") + loca = linenumdict[itemfirstline] + if type(loca)=="table" then + --local prevloca = itemarr[#itemarr] and itemarr[#itemarr].locat + --print("loca is table for",itemfirstline) + --print("prevloca is",prevloca) + --print("parent loca is",itparent and itparent.locat) + -- for ii,ss in ipairs(loca) do + -- print(ii,ss) + -- end + loca = table.remove(loca,1) + end + if not loca then + print(itemold) + error"no entry in linenumdict" + end + else + error"no linenumdict" + end + table.insert(itemarr,{re_name=re_name,item=item,locat=loca})--,comments=comments}) + items[re_name] = items[re_name] or {} + table.insert(items[re_name],item) + end + ----------------------- found = true ini = e + 1 if dumpit then @@ -451,8 +519,8 @@ local function clean_names_from_signature(self,signat) result = result:sub(1,-2) .. ")" return result end -local function parseFunction(self,stname,lineorig,namespace,locat) - +local function parseFunction(self,stname,itt,namespace,locat) + local lineorig,comment = split_comment(itt.item) line = clean_spaces(lineorig) --move * line = line:gsub("%s*%*","%*") @@ -649,7 +717,9 @@ local function parseFunction(self,stname,lineorig,namespace,locat) defT.call_args = caar --call_args defT.isvararg = signat:match("%.%.%.%)$") defT.location = locat - --defT.comment = "" --comment + local comentario = (itt.comments or "")..(comment or "") + if comentario=="" then comentario=nil end + defT.comment = comentario defT.argsT = argsArr if self.get_manuals(defT) then defT.manual = true @@ -743,40 +813,55 @@ end local function ADDdestructors(FP) local defsT = FP.defsT local newcdefs = {} - --TODO add constructor = true + + local keep_dest_locat = {} + --first get destructor locations + for numcdef,t in ipairs(FP.funcdefs) do + if t.cimguiname then + local defT = defsT[t.cimguiname] + if not defT[1].ret and not defT[1].constructor then --if constructor not processed + if defT[1].funcname:match("~") then + keep_dest_locat[defT[1].stname] = defT[1].location + end + end + else + assert(false,"no cimguiname") + end + end + for numcdef,t in ipairs(FP.funcdefs) do newcdefs[#newcdefs+1] = t if t.cimguiname then local defT = defsT[t.cimguiname] - --local defT = cimf[t.signature] - --for fname,defT in pairs(FP.defsT) do if not defT[1].ret and not defT[1].constructor then --if constructor not processed if defT[1].funcname:match("~") then defsT[t.cimguiname] = nil --clear destructor newcdefs[#newcdefs] = nil else - for j,cons in ipairs(defT) do - cons.constructor = true - end - if(defT[1].stname~=defT[1].funcname) then - print(defT[1].stname, defT[1].funcname) - error"names should be equal" - end - local def = {} - def.stname = defT[1].stname - def.templated = defT[1].templated - def.ret = "void" - def.ov_cimguiname = def.stname.."_destroy" - def.cimguiname = def.ov_cimguiname - def.destructor = true - def.args = "("..def.stname.."* self)" - def.call_args = "(self)" - def.signature = "("..def.stname.."*)" - def.defaults = {} - def.argsT = {{type=def.stname.."*",name="self"}} - defsT[def.ov_cimguiname] = {def} - defsT[def.ov_cimguiname][def.signature] = def - newcdefs[#newcdefs+1]={stname=def.stname,funcname=def.ov_cimguiname,args=def.args,signature=def.signature,cimguiname=def.cimguiname,call_args=def.call_args,ret =def.ret} + for j,cons in ipairs(defT) do + cons.constructor = true + end + if(defT[1].stname~=defT[1].funcname) then + print(defT[1].stname, defT[1].funcname) + error"names should be equal" + end + local def = {} + def.stname = defT[1].stname + def.templated = defT[1].templated + def.location = keep_dest_locat[defT[1].stname] + def.ret = "void" + def.ov_cimguiname = def.stname.."_destroy" + def.cimguiname = def.ov_cimguiname + def.destructor = true + def.realdestructor = def.location and true + def.args = "("..def.stname.."* self)" + def.call_args = "(self)" + def.signature = "("..def.stname.."*)" + def.defaults = {} + def.argsT = {{type=def.stname.."*",name="self"}} + defsT[def.ov_cimguiname] = {def} + defsT[def.ov_cimguiname][def.signature] = def + newcdefs[#newcdefs+1]={stname=def.stname,funcname=def.ov_cimguiname,args=def.args,signature=def.signature,cimguiname=def.cimguiname,call_args=def.call_args,ret =def.ret} end end end @@ -861,6 +946,18 @@ function M.Parser() function par.get_manuals(def) return par.manuals[def.ov_cimguiname] or par.manuals[def.cimguiname] end + function par:take_lines(cmd_line,names,compiler) + local pipe,err = io.popen(cmd_line,"r") + if not pipe then + error("could not execute COMPILER "..err) + end + local defines = {} + for line,loca,loca2 in M.location(pipe,names,defines,compiler) do + self:insert(line, tostring(loca)..":"..tostring(loca2)) + end + pipe:close() + return defines + end function par:do_parse() self:parseItems() self:gen_structs_and_enums() @@ -871,7 +968,8 @@ function M.Parser() function par:initTypedefsDict() --typedefs dictionary for i,cdef in ipairs(cdefs) do - local line = cdef[1] + --local line = cdef[1] + local line = split_comment(cdef[1]) if line:match("typedef") then line = clean_spaces(line) local value,key = line:match("typedef%s+(.+)%s+([%w_]+);") @@ -902,12 +1000,12 @@ function M.Parser() end end --recursive item parsing - function par:parseItemsR2(txt,doprint,locat) - local itsarr,its = parseItems(txt,false,locat) + function par:parseItemsR2(txt, itparent) + local itsarr,its = parseItems(txt,self.linenumdict,itparent) for i,it in ipairs(itsarr) do if not isLeaf(it.re_name) then local inner = strip_end(it.item:match("%b{}"):sub(2,-2)) - it.childs = par:parseItemsR2(inner,doprint,locat) + it.childs = par:parseItemsR2(inner, it) for j,child in ipairs(it.childs) do child.parent = it end @@ -928,29 +1026,26 @@ function M.Parser() end function par:parseItems() self:initTypedefsDict() - if self.separate_locations then - local all_itemsarr = {} - local located_cdefs = self:separate_locations(cdefs) - for i,lcdef in ipairs(located_cdefs) do - local txt = table.concat(lcdef[2],"\n") - local itemsarrT,itemsT = par:parseItemsR2(txt,false,lcdef[1]) - for i,it in ipairs(itemsarrT) do - table.insert(all_itemsarr,it) + + self.linenumdict = {} + local cdefs2 = {} + for i,cdef in ipairs(cdefs) do + if self.linenumdict[cdef[1]] then + --print("linenumdict alredy defined for", cdef[1],type(self.linenumdict[cdef[1]])) + if type(self.linenumdict[cdef[1]])=="string" then + self.linenumdict[cdef[1]] = {self.linenumdict[cdef[1]], cdef[2]} + else -- must be table already + table.insert(self.linenumdict[cdef[1]],cdef[2]) end + else + self.linenumdict[cdef[1]]=cdef[2] end - - self.itemsarr = all_itemsarr - itemsarr = self.itemsarr - else - local cdefs2 = {} - for i,cdef in ipairs(cdefs) do - table.insert(cdefs2,cdef[1]) - end - local txt = table.concat(cdefs2,"\n") - - self.itemsarr = par:parseItemsR2(txt) - itemsarr = self.itemsarr + table.insert(cdefs2,cdef[1]) end + local txt = table.concat(cdefs2,"\n") + + self.itemsarr = par:parseItemsR2(txt) + itemsarr = self.itemsarr end function par:printItems() @@ -961,6 +1056,7 @@ function M.Parser() function par:clean_structR1(itst) local stru = itst.item local outtab = {} + local commtab = {} --local iner = strip_end(stru:match("%b{}"):sub(2,-2)) local inistruct = clean_spaces(stru:match("(.-)%b{}")) --local stname = stru:match("struct%s*(%S+)%s*%b{}") @@ -987,8 +1083,11 @@ function M.Parser() --table.insert(outtab,stru:match("(.-)%b{}")) table.insert(outtab,"\nstruct "..stname.."\n") table.insert(outtab,"{") + table.insert(commtab,nil)--"") + table.insert(commtab,nil)--"") if derived then table.insert(outtab,"\n "..derived.." _"..derived..";") + table.insert(commtab,nil)--"") end --local itlist,itemsin = parseItems(iner, false,locat) local itlist = itst.childs @@ -1023,6 +1122,7 @@ function M.Parser() it2 = it2:gsub("%s*=.+;",";") end table.insert(outtab,it2) + table.insert(commtab,it.comments )--or "") end elseif it.re_name == "struct_re" or it.re_name == "enum_re" then --nop @@ -1033,7 +1133,7 @@ function M.Parser() end --final table.insert(outtab,"\n};") - return table.concat(outtab,""),stname,outtab + return table.concat(outtab,""),stname,outtab,commtab end local function get_parents_name(it) local parnam = "" @@ -1063,6 +1163,7 @@ function M.Parser() elseif it.re_name == "enum_re" then local enumname, enumbody = it.item:match"^%s*enum%s+([^%s;{}]+)[%s\n\r]*(%b{})" if enumname then + enumbody = clean_comments(enumbody) table.insert(outtab,"\ntypedef enum ".. enumbody..enumname..";") if it.parent then if it.parent.re_name == "namespace_re" then @@ -1071,7 +1172,8 @@ function M.Parser() end end else --unamed enum just repeat declaration - table.insert(outtab,it.item) + local cl_item = clean_comments(it.item) + table.insert(outtab,cl_item) end elseif it.re_name == "struct_re" or it.re_name == "typedef_st_re" then local cleanst,structname = self:clean_structR1(it, it.locat) @@ -1110,10 +1212,10 @@ function M.Parser() end end else - self:parseFunction(stname,it.item,namespace,it.locat) + self:parseFunction(stname,it,namespace,it.locat) end else - print("not processed",it.re_name,it.item:sub(1,20)) + print("not processed gen",it.re_name,it.item:sub(1,20)) end end @@ -1133,13 +1235,13 @@ function M.Parser() return outtabprest, outtabst end ----------- - function par:parse_struct_line(line,outtab) + function par:parse_struct_line(line,outtab,comment) local functype_re = "^%s*[%w%s%*]+%(%*[%w_]+%)%([^%(%)]*%)" local functype_reex = "^(%s*[%w%s%*]+%(%*)([%w_]+)(%)%([^%(%)]*%))" line = clean_spaces(line) if line:match(functype_re) then local t1,name,t2 = line:match(functype_reex) - table.insert(outtab,{type=t1..t2,name=name}) + table.insert(outtab,{type=t1..t2,name=name,comment=comment}) else --split type name1,name2; in several lines local typen,rest = line:match("%s*([^,]+)%s(%S+[,;])") @@ -1168,7 +1270,7 @@ function M.Parser() name = "" end local namebitfield,bitfield = name:match("([^:]+):(%d+)") --take care of bitfields - table.insert(outtab,{type=typen,template_type=template_type,name=namebitfield or name,bitfield=bitfield}) + table.insert(outtab,{type=typen,template_type=template_type,name=namebitfield or name,bitfield=bitfield,comment=comment}) end end end @@ -1183,11 +1285,28 @@ function M.Parser() outtab.enums[enumname] = {} table.insert(enumsordered,enumname) local inner = strip_end(it.item:match("%b{}"):sub(2,-2)) - local enumarr = str_split(inner,",") + + --clean comments adding them to last item + local enumarrtmp = str_split(inner,"\n") + local enumarr = {} + for k,lin in ipairs(enumarrtmp) do + local lin1,comm = split_comment(lin) + if lin1~="" then + local lin1arr = str_split(lin1,",") + for k2,lin1s in ipairs(lin1arr) do + if lin1s~="" then table.insert(enumarr,lin1s) end + end + enumarr[#enumarr] = enumarr[#enumarr] .. (comm or "") + end + end + for j,line in ipairs(enumarr) do + local comment + line, comment = split_comment(line) + assert(line~="") local name,value = line:match("%s*([%w_]+)%s*=%s*([^,]+)") if value then - table.insert(outtab.enums[enumname],{name=name,value=value}) + table.insert(outtab.enums[enumname],{name=name,value=value,comment=comment}) outtab.locations[enumname] = it.locat else --increment by one local name = line:match("%s*([^,]+)") @@ -1202,7 +1321,7 @@ function M.Parser() value = prevvalue .. "+1" end if name then --avoid last , if present - table.insert(outtab.enums[enumname],{name=name,value=value}) + table.insert(outtab.enums[enumname],{name=name,value=value,comment=comment}) outtab.locations[enumname] = it.locat end end @@ -1225,14 +1344,14 @@ function M.Parser() elseif it.re_name == "enum_re" then enums_for_table(it, outtab, enumsordered) elseif it.re_name == "struct_re" or it.re_name == "typedef_st_re" then - local cleanst,structname,strtab = self:clean_structR1(it, it.locat) + local cleanst,structname,strtab,comstab = self:clean_structR1(it, it.locat) --if not void stname or templated if not structname then print("NO NAME",cleanst,it.item) end if structname and not self.typenames[structname] then outtab.structs[structname] = {} outtab.locations[structname] = it.locat for j=3,#strtab-1 do - self:parse_struct_line(strtab[j],outtab.structs[structname]) + self:parse_struct_line(strtab[j],outtab.structs[structname],comstab[j]) end end elseif it.re_name == "namespace_re" or it.re_name == "union_re" or it.re_name == "functype_re" then @@ -1536,9 +1655,8 @@ local function location(file,locpathT,defines,COMPILER) return nil end end - if #line==0 then --nothing on emptyline - elseif not line:match("%S") then --nothing if only spaces - elseif line:sub(1,1) == "#" then + + if line:sub(1,1) == "#" then --elseif line:match"^%s*#" then -- Is this a location pragma? local loc_num_t,location_match = line:match(location_re) @@ -1555,6 +1673,7 @@ local function location(file,locpathT,defines,COMPILER) end end elseif in_location then + loc_num_incr = loc_num_incr + 1 local name,val = line:match(define_re) if name and val then --while defines[val] do val = defines[val] end @@ -1568,6 +1687,7 @@ local function location(file,locpathT,defines,COMPILER) local loc_num_real = loc_num + loc_num_incr loc_num_incr = loc_num_incr + 1 --if doprint then print(which_locationold,which_location) end + if line:match("%S") then --nothing on emptyline if (which_locationold~=which_location) or (loc_num_realold and loc_num_realold < loc_num_real) then --old line complete --doprint = false @@ -1579,6 +1699,7 @@ local function location(file,locpathT,defines,COMPILER) which_locationold,loc_num_realold = which_location,loc_num_real --return line,loc_num_real, which_location end + end end until false --forever end @@ -1723,7 +1844,7 @@ local function func_header_generate_funcs(FP) local manual = FP.get_manuals(def) if not manual and not def.templated then - local addcoment = def.comment or "" + local addcoment = "" --def.comment or "" local empty = def.args:match("^%(%)") --no args if def.constructor then assert(def.stname ~= "","constructor without struct") diff --git a/generator/generator.lua b/generator/generator.lua index 2f6c6dd..00b5b80 100644 --- a/generator/generator.lua +++ b/generator/generator.lua @@ -178,6 +178,52 @@ local function DefsByStruct(FP) FP.defsBystruct = structs end +-- function for repairing funcdefs default values +local function repair_defaults(defsT,str_and_enu) + local function deleteOuterPars(def) + local w = def:match("^%b()$") + if w then + w = w:gsub("^%((.+)%)$","%1") + return w + else + return def + end + end + local function CleanImU32(def) + def = def:gsub("%(ImU32%)","") + --quitar () de numeros + def = def:gsub("%((%d+)%)","%1") + def = deleteOuterPars(def) + local bb=cpp2ffi.strsplit(def,"|") + for i=1,#bb do + local val = deleteOuterPars(bb[i]) + if val:match"<<" then + local v1,v2 = val:match("(%d+)%s*<<%s*(%d+)") + val = v1*2^v2 + bb[i] = val + end + assert(type(bb[i])=="number") + end + local res = 0 + for i=1,#bb do res = res + bb[i] end + return res + end + for k,defT in pairs(defsT) do + for i,def in ipairs(defT) do + for k,v in pairs(def.defaults) do + --do only if not a c string + local is_cstring = v:sub(1,1)=='"' and v:sub(-1,-1) =='"' + if not is_cstring then + def.defaults[k] = def.defaults[k]:gsub("%(%(void%s*%*%)0%)","NULL") + if def.defaults[k]:match"%(ImU32%)" then + def.defaults[k] = tostring(CleanImU32(def.defaults[k])) + end + end + end + end + end +end + ----------custom ImVector templates local table_do_sorted = cpp2ffi.table_do_sorted local function generate_templates(code,codeimpool,templates) @@ -289,19 +335,6 @@ local function parseImGuiHeader(header,names) --prepare parser local parser = cpp2ffi.Parser() - parser.separate_locations = function(self,cdefs) - local imguicdefs = {} - local othercdefs = {} - for i,cdef in ipairs(cdefs) do - if cdef[2]=="imgui" then - table.insert(imguicdefs,cdef[1]) - else - table.insert(othercdefs,cdef[1]) - end - end - return {{"imgui",imguicdefs},{"internal",othercdefs}} - end - parser.getCname = function(stname,funcname,namespace) local pre = (stname == "") and (namespace and (namespace=="ImGui" and "ig" or namespace.."_") or "ig") or stname.."_" return pre..funcname @@ -310,30 +343,8 @@ local function parseImGuiHeader(header,names) parser.manuals = cimgui_manuals parser.UDTs = {"ImVec2","ImVec4","ImColor","ImRect"} - local pipe,err = io.popen(CPRE..header,"r") + local defines = parser:take_lines(CPRE..header,names,COMPILER) - if not pipe then - error("could not execute COMPILER "..err) - end - - local iterator = cpp2ffi.location - - --[[ - local tableo = {} - local line - repeat - line =pipe:read"*l" - table.insert(tableo,line) - until not line - cpp2ffi.save_data("cdefs1.lua",table.concat(tableo,"\n")) - --]] - for line,loca,loca2 in iterator(pipe,names,{},COMPILER) do - parser:insert(line, loca) - --table.insert(tableo,line) - --print(loca,loca2) - end - --cpp2ffi.save_data("cdefs1.lua",table.concat(tableo)) - pipe:close() return parser end --generation @@ -364,19 +375,17 @@ parser1:do_parse() save_data("./output/overloads.txt",parser1.overloadstxt) cimgui_generation(parser1) -----------save fundefs in definitions.lua for using in bindings ---DefsByStruct(pFP) -set_defines(parser1.defsT) -save_data("./output/definitions.lua",serializeTableF(parser1.defsT)) - ----------save struct and enums lua table in structs_and_enums.lua for using in bindings local structs_and_enums_table = parser1:gen_structs_and_enums_table() - ------------------------ save_data("./output/structs_and_enums.lua",serializeTableF(structs_and_enums_table)) save_data("./output/typedefs_dict.lua",serializeTableF(parser1.typedefs_dict)) +----------save fundefs in definitions.lua for using in bindings +--DefsByStruct(pFP) +set_defines(parser1.defsT) +repair_defaults(parser1.defsT, structs_and_enums_table) +save_data("./output/definitions.lua",serializeTableF(parser1.defsT)) --check every function has ov_cimguiname -- for k,v in pairs(parser1.defsT) do @@ -409,35 +418,11 @@ if #implementations > 0 then extra_includes = extra_includes .. include_cmd .. inc .. " " end end + + local defines = parser2:take_lines(CPRE..extra_defines..extra_includes..source, {locati}, COMPILER) - local pipe,err = io.popen(CPRE..extra_defines..extra_includes..source,"r") - - if not pipe then - error("could not get file: "..err) - end - - local iterator = cpp2ffi.location - - for line,locat in iterator(pipe,{locati},{},COMPILER) do - --local line, comment = split_comment(line) - parser2:insert(line,locat) - end - pipe:close() end - parser2.separate_locations = function(self, cdefs) - local sepcdefs = {} - for i,impl in ipairs(implementations) do - sepcdefs[i] = {[[imgui_impl_]].. impl,{}} - for j,cdef in ipairs(cdefs) do - if cdef[2]==sepcdefs[i][1] then - table.insert(sepcdefs[i][2],cdef[1]) - end - end - end - return sepcdefs - end - parser2:do_parse() -- save ./cimgui_impl.h diff --git a/generator/output/cimgui.cpp b/generator/output/cimgui.cpp index 55a0f8f..ec9d18f 100644 --- a/generator/output/cimgui.cpp +++ b/generator/output/cimgui.cpp @@ -3,6 +3,9 @@ //with imgui_internal.h api #include "./imgui/imgui.h" +#ifdef CIMGUI_FREETYPE +#include "./imgui/misc/freetype/imgui_freetype.h" +#endif #include "./imgui/imgui_internal.h" #include "cimgui.h" diff --git a/generator/output/cimgui.h b/generator/output/cimgui.h index 8eae3de..c9d986b 100644 --- a/generator/output/cimgui.h +++ b/generator/output/cimgui.h @@ -102,6 +102,7 @@ typedef struct ImDrawList ImDrawList; typedef struct ImDrawData ImDrawData; typedef struct ImDrawCmd ImDrawCmd; typedef struct ImDrawChannel ImDrawChannel; + struct ImDrawChannel; struct ImDrawCmd; struct ImDrawData; diff --git a/generator/output/cimgui_impl.h b/generator/output/cimgui_impl.h index 68e4b87..5320a09 100644 --- a/generator/output/cimgui_impl.h +++ b/generator/output/cimgui_impl.h @@ -1,6 +1,9 @@ typedef struct SDL_Window SDL_Window; typedef struct GLFWwindow GLFWwindow; -struct GLFWwindow;struct SDL_Window; + +struct GLFWwindow; + +struct SDL_Window; typedef union SDL_Event SDL_Event;CIMGUI_API bool ImGui_ImplGlfw_InitForOpenGL(GLFWwindow* window,bool install_callbacks); CIMGUI_API bool ImGui_ImplGlfw_InitForVulkan(GLFWwindow* window,bool install_callbacks); CIMGUI_API void ImGui_ImplGlfw_Shutdown(); diff --git a/generator/output/definitions.json b/generator/output/definitions.json index d6b311c..89ad598 100644 --- a/generator/output/definitions.json +++ b/generator/output/definitions.json @@ -13,7 +13,7 @@ "cimguiname": "ImBitVector_Clear", "defaults": [], "funcname": "Clear", - "location": "internal", + "location": "imgui_internal:472", "ov_cimguiname": "ImBitVector_Clear", "ret": "void", "signature": "()", @@ -38,7 +38,7 @@ "cimguiname": "ImBitVector_ClearBit", "defaults": [], "funcname": "ClearBit", - "location": "internal", + "location": "imgui_internal:475", "ov_cimguiname": "ImBitVector_ClearBit", "ret": "void", "signature": "(int)", @@ -63,7 +63,7 @@ "cimguiname": "ImBitVector_Create", "defaults": [], "funcname": "Create", - "location": "internal", + "location": "imgui_internal:471", "ov_cimguiname": "ImBitVector_Create", "ret": "void", "signature": "(int)", @@ -88,7 +88,7 @@ "cimguiname": "ImBitVector_SetBit", "defaults": [], "funcname": "SetBit", - "location": "internal", + "location": "imgui_internal:474", "ov_cimguiname": "ImBitVector_SetBit", "ret": "void", "signature": "(int)", @@ -113,7 +113,7 @@ "cimguiname": "ImBitVector_TestBit", "defaults": [], "funcname": "TestBit", - "location": "internal", + "location": "imgui_internal:473", "ov_cimguiname": "ImBitVector_TestBit", "ret": "bool", "signature": "(int)const", @@ -138,7 +138,7 @@ "cimguiname": "ImChunkStream_alloc_chunk", "defaults": [], "funcname": "alloc_chunk", - "location": "internal", + "location": "imgui_internal:517", "ov_cimguiname": "ImChunkStream_alloc_chunk", "ret": "T*", "signature": "(size_t)", @@ -160,7 +160,7 @@ "cimguiname": "ImChunkStream_begin", "defaults": [], "funcname": "begin", - "location": "internal", + "location": "imgui_internal:518", "ov_cimguiname": "ImChunkStream_begin", "ret": "T*", "signature": "()", @@ -186,7 +186,7 @@ "cimguiname": "ImChunkStream_chunk_size", "defaults": [], "funcname": "chunk_size", - "location": "internal", + "location": "imgui_internal:520", "ov_cimguiname": "ImChunkStream_chunk_size", "ret": "int", "signature": "(const T*)", @@ -208,7 +208,7 @@ "cimguiname": "ImChunkStream_clear", "defaults": [], "funcname": "clear", - "location": "internal", + "location": "imgui_internal:514", "ov_cimguiname": "ImChunkStream_clear", "ret": "void", "signature": "()", @@ -230,7 +230,7 @@ "cimguiname": "ImChunkStream_empty", "defaults": [], "funcname": "empty", - "location": "internal", + "location": "imgui_internal:515", "ov_cimguiname": "ImChunkStream_empty", "ret": "bool", "signature": "()const", @@ -252,7 +252,7 @@ "cimguiname": "ImChunkStream_end", "defaults": [], "funcname": "end", - "location": "internal", + "location": "imgui_internal:521", "ov_cimguiname": "ImChunkStream_end", "ret": "T*", "signature": "()", @@ -278,7 +278,7 @@ "cimguiname": "ImChunkStream_next_chunk", "defaults": [], "funcname": "next_chunk", - "location": "internal", + "location": "imgui_internal:519", "ov_cimguiname": "ImChunkStream_next_chunk", "ret": "T*", "signature": "(T*)", @@ -304,7 +304,7 @@ "cimguiname": "ImChunkStream_offset_from_ptr", "defaults": [], "funcname": "offset_from_ptr", - "location": "internal", + "location": "imgui_internal:522", "ov_cimguiname": "ImChunkStream_offset_from_ptr", "ret": "int", "signature": "(const T*)", @@ -330,7 +330,7 @@ "cimguiname": "ImChunkStream_ptr_from_offset", "defaults": [], "funcname": "ptr_from_offset", - "location": "internal", + "location": "imgui_internal:523", "ov_cimguiname": "ImChunkStream_ptr_from_offset", "ret": "T*", "signature": "(int)", @@ -352,7 +352,7 @@ "cimguiname": "ImChunkStream_size", "defaults": [], "funcname": "size", - "location": "internal", + "location": "imgui_internal:516", "ov_cimguiname": "ImChunkStream_size", "ret": "int", "signature": "()const", @@ -393,7 +393,7 @@ }, "funcname": "HSV", "is_static_function": true, - "location": "imgui", + "location": "imgui:1941", "nonUDT": 1, "ov_cimguiname": "ImColor_HSV", "ret": "void", @@ -411,7 +411,7 @@ "constructor": true, "defaults": [], "funcname": "ImColor", - "location": "imgui", + "location": "imgui:1931", "ov_cimguiname": "ImColor_ImColorNil", "signature": "()", "stname": "ImColor" @@ -444,7 +444,7 @@ "a": "255" }, "funcname": "ImColor", - "location": "imgui", + "location": "imgui:1932", "ov_cimguiname": "ImColor_ImColorInt", "signature": "(int,int,int,int)", "stname": "ImColor" @@ -463,7 +463,7 @@ "constructor": true, "defaults": [], "funcname": "ImColor", - "location": "imgui", + "location": "imgui:1933", "ov_cimguiname": "ImColor_ImColorU32", "signature": "(ImU32)", "stname": "ImColor" @@ -496,7 +496,7 @@ "a": "1.0f" }, "funcname": "ImColor", - "location": "imgui", + "location": "imgui:1934", "ov_cimguiname": "ImColor_ImColorFloat", "signature": "(float,float,float,float)", "stname": "ImColor" @@ -515,7 +515,7 @@ "constructor": true, "defaults": [], "funcname": "ImColor", - "location": "imgui", + "location": "imgui:1935", "ov_cimguiname": "ImColor_ImColorVec4", "signature": "(const ImVec4)", "stname": "ImColor" @@ -553,7 +553,7 @@ "a": "1.0f" }, "funcname": "SetHSV", - "location": "imgui", + "location": "imgui:1940", "ov_cimguiname": "ImColor_SetHSV", "ret": "void", "signature": "(float,float,float,float)", @@ -589,7 +589,7 @@ "constructor": true, "defaults": [], "funcname": "ImDrawCmd", - "location": "imgui", + "location": "imgui:1986", "ov_cimguiname": "ImDrawCmd_ImDrawCmd", "signature": "()", "stname": "ImDrawCmd" @@ -628,7 +628,7 @@ "cimguiname": "ImDrawDataBuilder_Clear", "defaults": [], "funcname": "Clear", - "location": "internal", + "location": "imgui_internal:565", "ov_cimguiname": "ImDrawDataBuilder_Clear", "ret": "void", "signature": "()", @@ -649,7 +649,7 @@ "cimguiname": "ImDrawDataBuilder_ClearFreeMemory", "defaults": [], "funcname": "ClearFreeMemory", - "location": "internal", + "location": "imgui_internal:566", "ov_cimguiname": "ImDrawDataBuilder_ClearFreeMemory", "ret": "void", "signature": "()", @@ -670,7 +670,7 @@ "cimguiname": "ImDrawDataBuilder_FlattenIntoSingleLayer", "defaults": [], "funcname": "FlattenIntoSingleLayer", - "location": "internal", + "location": "imgui_internal:567", "ov_cimguiname": "ImDrawDataBuilder_FlattenIntoSingleLayer", "ret": "void", "signature": "()", @@ -691,7 +691,7 @@ "cimguiname": "ImDrawData_Clear", "defaults": [], "funcname": "Clear", - "location": "imgui", + "location": "imgui:2197", "ov_cimguiname": "ImDrawData_Clear", "ret": "void", "signature": "()", @@ -712,7 +712,7 @@ "cimguiname": "ImDrawData_DeIndexAllBuffers", "defaults": [], "funcname": "DeIndexAllBuffers", - "location": "imgui", + "location": "imgui:2198", "ov_cimguiname": "ImDrawData_DeIndexAllBuffers", "ret": "void", "signature": "()", @@ -729,7 +729,7 @@ "constructor": true, "defaults": [], "funcname": "ImDrawData", - "location": "imgui", + "location": "imgui:2195", "ov_cimguiname": "ImDrawData_ImDrawData", "signature": "()", "stname": "ImDrawData" @@ -753,7 +753,7 @@ "cimguiname": "ImDrawData_ScaleClipRects", "defaults": [], "funcname": "ScaleClipRects", - "location": "imgui", + "location": "imgui:2199", "ov_cimguiname": "ImDrawData_ScaleClipRects", "ret": "void", "signature": "(const ImVec2)", @@ -773,7 +773,9 @@ "cimguiname": "ImDrawData_destroy", "defaults": [], "destructor": true, + "location": "imgui:2196", "ov_cimguiname": "ImDrawData_destroy", + "realdestructor": true, "ret": "void", "signature": "(ImDrawData*)", "stname": "ImDrawData" @@ -789,7 +791,7 @@ "constructor": true, "defaults": [], "funcname": "ImDrawListSharedData", - "location": "internal", + "location": "imgui_internal:557", "ov_cimguiname": "ImDrawListSharedData_ImDrawListSharedData", "signature": "()", "stname": "ImDrawListSharedData" @@ -813,7 +815,7 @@ "cimguiname": "ImDrawListSharedData_SetCircleSegmentMaxError", "defaults": [], "funcname": "SetCircleSegmentMaxError", - "location": "internal", + "location": "imgui_internal:558", "ov_cimguiname": "ImDrawListSharedData_SetCircleSegmentMaxError", "ret": "void", "signature": "(float)", @@ -853,7 +855,7 @@ "cimguiname": "ImDrawListSplitter_Clear", "defaults": [], "funcname": "Clear", - "location": "imgui", + "location": "imgui:2029", "ov_cimguiname": "ImDrawListSplitter_Clear", "ret": "void", "signature": "()", @@ -874,7 +876,7 @@ "cimguiname": "ImDrawListSplitter_ClearFreeMemory", "defaults": [], "funcname": "ClearFreeMemory", - "location": "imgui", + "location": "imgui:2030", "ov_cimguiname": "ImDrawListSplitter_ClearFreeMemory", "ret": "void", "signature": "()", @@ -891,7 +893,7 @@ "constructor": true, "defaults": [], "funcname": "ImDrawListSplitter", - "location": "imgui", + "location": "imgui:2027", "ov_cimguiname": "ImDrawListSplitter_ImDrawListSplitter", "signature": "()", "stname": "ImDrawListSplitter" @@ -915,7 +917,7 @@ "cimguiname": "ImDrawListSplitter_Merge", "defaults": [], "funcname": "Merge", - "location": "imgui", + "location": "imgui:2032", "ov_cimguiname": "ImDrawListSplitter_Merge", "ret": "void", "signature": "(ImDrawList*)", @@ -944,7 +946,7 @@ "cimguiname": "ImDrawListSplitter_SetCurrentChannel", "defaults": [], "funcname": "SetCurrentChannel", - "location": "imgui", + "location": "imgui:2033", "ov_cimguiname": "ImDrawListSplitter_SetCurrentChannel", "ret": "void", "signature": "(ImDrawList*,int)", @@ -973,7 +975,7 @@ "cimguiname": "ImDrawListSplitter_Split", "defaults": [], "funcname": "Split", - "location": "imgui", + "location": "imgui:2031", "ov_cimguiname": "ImDrawListSplitter_Split", "ret": "void", "signature": "(ImDrawList*,int)", @@ -993,7 +995,9 @@ "cimguiname": "ImDrawListSplitter_destroy", "defaults": [], "destructor": true, + "location": "imgui:2028", "ov_cimguiname": "ImDrawListSplitter_destroy", + "realdestructor": true, "ret": "void", "signature": "(ImDrawListSplitter*)", "stname": "ImDrawListSplitter" @@ -1043,7 +1047,7 @@ "num_segments": "0" }, "funcname": "AddBezierCurve", - "location": "imgui", + "location": "imgui:2123", "ov_cimguiname": "ImDrawList_AddBezierCurve", "ret": "void", "signature": "(const ImVec2,const ImVec2,const ImVec2,const ImVec2,ImU32,float,int)", @@ -1072,7 +1076,7 @@ "cimguiname": "ImDrawList_AddCallback", "defaults": [], "funcname": "AddCallback", - "location": "imgui", + "location": "imgui:2145", "ov_cimguiname": "ImDrawList_AddCallback", "ret": "void", "signature": "(ImDrawCallback,void*)", @@ -1116,7 +1120,7 @@ "thickness": "1.0f" }, "funcname": "AddCircle", - "location": "imgui", + "location": "imgui:2115", "ov_cimguiname": "ImDrawList_AddCircle", "ret": "void", "signature": "(const ImVec2,float,ImU32,int,float)", @@ -1155,7 +1159,7 @@ "num_segments": "0" }, "funcname": "AddCircleFilled", - "location": "imgui", + "location": "imgui:2116", "ov_cimguiname": "ImDrawList_AddCircleFilled", "ret": "void", "signature": "(const ImVec2,float,ImU32,int)", @@ -1188,7 +1192,7 @@ "cimguiname": "ImDrawList_AddConvexPolyFilled", "defaults": [], "funcname": "AddConvexPolyFilled", - "location": "imgui", + "location": "imgui:2122", "ov_cimguiname": "ImDrawList_AddConvexPolyFilled", "ret": "void", "signature": "(const ImVec2*,int,ImU32)", @@ -1209,7 +1213,7 @@ "cimguiname": "ImDrawList_AddDrawCmd", "defaults": [], "funcname": "AddDrawCmd", - "location": "imgui", + "location": "imgui:2146", "ov_cimguiname": "ImDrawList_AddDrawCmd", "ret": "void", "signature": "()", @@ -1253,12 +1257,12 @@ "call_args": "(user_texture_id,p_min,p_max,uv_min,uv_max,col)", "cimguiname": "ImDrawList_AddImage", "defaults": { - "col": "(((ImU32)(255)<<24)|((ImU32)(255)<<16)|((ImU32)(255)<<8)|((ImU32)(255)<<0))", + "col": "4294967295", "uv_max": "ImVec2(1,1)", "uv_min": "ImVec2(0,0)" }, "funcname": "AddImage", - "location": "imgui", + "location": "imgui:2129", "ov_cimguiname": "ImDrawList_AddImage", "ret": "void", "signature": "(ImTextureID,const ImVec2,const ImVec2,const ImVec2,const ImVec2,ImU32)", @@ -1318,14 +1322,14 @@ "call_args": "(user_texture_id,p1,p2,p3,p4,uv1,uv2,uv3,uv4,col)", "cimguiname": "ImDrawList_AddImageQuad", "defaults": { - "col": "(((ImU32)(255)<<24)|((ImU32)(255)<<16)|((ImU32)(255)<<8)|((ImU32)(255)<<0))", + "col": "4294967295", "uv1": "ImVec2(0,0)", "uv2": "ImVec2(1,0)", "uv3": "ImVec2(1,1)", "uv4": "ImVec2(0,1)" }, "funcname": "AddImageQuad", - "location": "imgui", + "location": "imgui:2130", "ov_cimguiname": "ImDrawList_AddImageQuad", "ret": "void", "signature": "(ImTextureID,const ImVec2,const ImVec2,const ImVec2,const ImVec2,const ImVec2,const ImVec2,const ImVec2,const ImVec2,ImU32)", @@ -1380,7 +1384,7 @@ "rounding_corners": "ImDrawCornerFlags_All" }, "funcname": "AddImageRounded", - "location": "imgui", + "location": "imgui:2131", "ov_cimguiname": "ImDrawList_AddImageRounded", "ret": "void", "signature": "(ImTextureID,const ImVec2,const ImVec2,const ImVec2,const ImVec2,ImU32,float,ImDrawCornerFlags)", @@ -1419,7 +1423,7 @@ "thickness": "1.0f" }, "funcname": "AddLine", - "location": "imgui", + "location": "imgui:2107", "ov_cimguiname": "ImDrawList_AddLine", "ret": "void", "signature": "(const ImVec2,const ImVec2,ImU32,float)", @@ -1462,7 +1466,7 @@ "thickness": "1.0f" }, "funcname": "AddNgon", - "location": "imgui", + "location": "imgui:2117", "ov_cimguiname": "ImDrawList_AddNgon", "ret": "void", "signature": "(const ImVec2,float,ImU32,int,float)", @@ -1499,7 +1503,7 @@ "cimguiname": "ImDrawList_AddNgonFilled", "defaults": [], "funcname": "AddNgonFilled", - "location": "imgui", + "location": "imgui:2118", "ov_cimguiname": "ImDrawList_AddNgonFilled", "ret": "void", "signature": "(const ImVec2,float,ImU32,int)", @@ -1540,7 +1544,7 @@ "cimguiname": "ImDrawList_AddPolyline", "defaults": [], "funcname": "AddPolyline", - "location": "imgui", + "location": "imgui:2121", "ov_cimguiname": "ImDrawList_AddPolyline", "ret": "void", "signature": "(const ImVec2*,int,ImU32,bool,float)", @@ -1587,7 +1591,7 @@ "thickness": "1.0f" }, "funcname": "AddQuad", - "location": "imgui", + "location": "imgui:2111", "ov_cimguiname": "ImDrawList_AddQuad", "ret": "void", "signature": "(const ImVec2,const ImVec2,const ImVec2,const ImVec2,ImU32,float)", @@ -1628,7 +1632,7 @@ "cimguiname": "ImDrawList_AddQuadFilled", "defaults": [], "funcname": "AddQuadFilled", - "location": "imgui", + "location": "imgui:2112", "ov_cimguiname": "ImDrawList_AddQuadFilled", "ret": "void", "signature": "(const ImVec2,const ImVec2,const ImVec2,const ImVec2,ImU32)", @@ -1677,7 +1681,7 @@ "thickness": "1.0f" }, "funcname": "AddRect", - "location": "imgui", + "location": "imgui:2108", "ov_cimguiname": "ImDrawList_AddRect", "ret": "void", "signature": "(const ImVec2,const ImVec2,ImU32,float,ImDrawCornerFlags,float)", @@ -1721,7 +1725,7 @@ "rounding_corners": "ImDrawCornerFlags_All" }, "funcname": "AddRectFilled", - "location": "imgui", + "location": "imgui:2109", "ov_cimguiname": "ImDrawList_AddRectFilled", "ret": "void", "signature": "(const ImVec2,const ImVec2,ImU32,float,ImDrawCornerFlags)", @@ -1766,7 +1770,7 @@ "cimguiname": "ImDrawList_AddRectFilledMultiColor", "defaults": [], "funcname": "AddRectFilledMultiColor", - "location": "imgui", + "location": "imgui:2110", "ov_cimguiname": "ImDrawList_AddRectFilledMultiColor", "ret": "void", "signature": "(const ImVec2,const ImVec2,ImU32,ImU32,ImU32,ImU32)", @@ -1802,10 +1806,10 @@ "call_args": "(pos,col,text_begin,text_end)", "cimguiname": "ImDrawList_AddText", "defaults": { - "text_end": "((void*)0)" + "text_end": "NULL" }, "funcname": "AddText", - "location": "imgui", + "location": "imgui:2119", "ov_cimguiname": "ImDrawList_AddTextVec2", "ret": "void", "signature": "(const ImVec2,ImU32,const char*,const char*)", @@ -1855,12 +1859,12 @@ "call_args": "(font,font_size,pos,col,text_begin,text_end,wrap_width,cpu_fine_clip_rect)", "cimguiname": "ImDrawList_AddText", "defaults": { - "cpu_fine_clip_rect": "((void*)0)", - "text_end": "((void*)0)", + "cpu_fine_clip_rect": "NULL", + "text_end": "NULL", "wrap_width": "0.0f" }, "funcname": "AddText", - "location": "imgui", + "location": "imgui:2120", "ov_cimguiname": "ImDrawList_AddTextFontPtr", "ret": "void", "signature": "(const ImFont*,float,const ImVec2,ImU32,const char*,const char*,float,const ImVec4*)", @@ -1903,7 +1907,7 @@ "thickness": "1.0f" }, "funcname": "AddTriangle", - "location": "imgui", + "location": "imgui:2113", "ov_cimguiname": "ImDrawList_AddTriangle", "ret": "void", "signature": "(const ImVec2,const ImVec2,const ImVec2,ImU32,float)", @@ -1940,7 +1944,7 @@ "cimguiname": "ImDrawList_AddTriangleFilled", "defaults": [], "funcname": "AddTriangleFilled", - "location": "imgui", + "location": "imgui:2114", "ov_cimguiname": "ImDrawList_AddTriangleFilled", "ret": "void", "signature": "(const ImVec2,const ImVec2,const ImVec2,ImU32)", @@ -1961,7 +1965,7 @@ "cimguiname": "ImDrawList_ChannelsMerge", "defaults": [], "funcname": "ChannelsMerge", - "location": "imgui", + "location": "imgui:2156", "ov_cimguiname": "ImDrawList_ChannelsMerge", "ret": "void", "signature": "()", @@ -1986,7 +1990,7 @@ "cimguiname": "ImDrawList_ChannelsSetCurrent", "defaults": [], "funcname": "ChannelsSetCurrent", - "location": "imgui", + "location": "imgui:2157", "ov_cimguiname": "ImDrawList_ChannelsSetCurrent", "ret": "void", "signature": "(int)", @@ -2011,7 +2015,7 @@ "cimguiname": "ImDrawList_ChannelsSplit", "defaults": [], "funcname": "ChannelsSplit", - "location": "imgui", + "location": "imgui:2155", "ov_cimguiname": "ImDrawList_ChannelsSplit", "ret": "void", "signature": "(int)", @@ -2032,7 +2036,7 @@ "cimguiname": "ImDrawList_CloneOutput", "defaults": [], "funcname": "CloneOutput", - "location": "imgui", + "location": "imgui:2147", "ov_cimguiname": "ImDrawList_CloneOutput", "ret": "ImDrawList*", "signature": "()const", @@ -2057,7 +2061,7 @@ "cimguiname": "ImDrawList_GetClipRectMax", "defaults": [], "funcname": "GetClipRectMax", - "location": "imgui", + "location": "imgui:2099", "nonUDT": 1, "ov_cimguiname": "ImDrawList_GetClipRectMax", "ret": "void", @@ -2083,7 +2087,7 @@ "cimguiname": "ImDrawList_GetClipRectMin", "defaults": [], "funcname": "GetClipRectMin", - "location": "imgui", + "location": "imgui:2098", "nonUDT": 1, "ov_cimguiname": "ImDrawList_GetClipRectMin", "ret": "void", @@ -2106,7 +2110,7 @@ "constructor": true, "defaults": [], "funcname": "ImDrawList", - "location": "imgui", + "location": "imgui:2090", "ov_cimguiname": "ImDrawList_ImDrawList", "signature": "(const ImDrawListSharedData*)", "stname": "ImDrawList" @@ -2148,7 +2152,7 @@ "num_segments": "10" }, "funcname": "PathArcTo", - "location": "imgui", + "location": "imgui:2139", "ov_cimguiname": "ImDrawList_PathArcTo", "ret": "void", "signature": "(const ImVec2,float,float,float,int)", @@ -2185,7 +2189,7 @@ "cimguiname": "ImDrawList_PathArcToFast", "defaults": [], "funcname": "PathArcToFast", - "location": "imgui", + "location": "imgui:2140", "ov_cimguiname": "ImDrawList_PathArcToFast", "ret": "void", "signature": "(const ImVec2,float,int,int)", @@ -2224,7 +2228,7 @@ "num_segments": "0" }, "funcname": "PathBezierCurveTo", - "location": "imgui", + "location": "imgui:2141", "ov_cimguiname": "ImDrawList_PathBezierCurveTo", "ret": "void", "signature": "(const ImVec2,const ImVec2,const ImVec2,int)", @@ -2245,7 +2249,7 @@ "cimguiname": "ImDrawList_PathClear", "defaults": [], "funcname": "PathClear", - "location": "imgui", + "location": "imgui:2134", "ov_cimguiname": "ImDrawList_PathClear", "ret": "void", "signature": "()", @@ -2270,7 +2274,7 @@ "cimguiname": "ImDrawList_PathFillConvex", "defaults": [], "funcname": "PathFillConvex", - "location": "imgui", + "location": "imgui:2137", "ov_cimguiname": "ImDrawList_PathFillConvex", "ret": "void", "signature": "(ImU32)", @@ -2295,7 +2299,7 @@ "cimguiname": "ImDrawList_PathLineTo", "defaults": [], "funcname": "PathLineTo", - "location": "imgui", + "location": "imgui:2135", "ov_cimguiname": "ImDrawList_PathLineTo", "ret": "void", "signature": "(const ImVec2)", @@ -2320,7 +2324,7 @@ "cimguiname": "ImDrawList_PathLineToMergeDuplicate", "defaults": [], "funcname": "PathLineToMergeDuplicate", - "location": "imgui", + "location": "imgui:2136", "ov_cimguiname": "ImDrawList_PathLineToMergeDuplicate", "ret": "void", "signature": "(const ImVec2)", @@ -2360,7 +2364,7 @@ "rounding_corners": "ImDrawCornerFlags_All" }, "funcname": "PathRect", - "location": "imgui", + "location": "imgui:2142", "ov_cimguiname": "ImDrawList_PathRect", "ret": "void", "signature": "(const ImVec2,const ImVec2,float,ImDrawCornerFlags)", @@ -2395,7 +2399,7 @@ "thickness": "1.0f" }, "funcname": "PathStroke", - "location": "imgui", + "location": "imgui:2138", "ov_cimguiname": "ImDrawList_PathStroke", "ret": "void", "signature": "(ImU32,bool,float)", @@ -2416,7 +2420,7 @@ "cimguiname": "ImDrawList_PopClipRect", "defaults": [], "funcname": "PopClipRect", - "location": "imgui", + "location": "imgui:2095", "ov_cimguiname": "ImDrawList_PopClipRect", "ret": "void", "signature": "()", @@ -2437,7 +2441,7 @@ "cimguiname": "ImDrawList_PopTextureID", "defaults": [], "funcname": "PopTextureID", - "location": "imgui", + "location": "imgui:2097", "ov_cimguiname": "ImDrawList_PopTextureID", "ret": "void", "signature": "()", @@ -2494,7 +2498,7 @@ "cimguiname": "ImDrawList_PrimQuadUV", "defaults": [], "funcname": "PrimQuadUV", - "location": "imgui", + "location": "imgui:2166", "ov_cimguiname": "ImDrawList_PrimQuadUV", "ret": "void", "signature": "(const ImVec2,const ImVec2,const ImVec2,const ImVec2,const ImVec2,const ImVec2,const ImVec2,const ImVec2,ImU32)", @@ -2527,7 +2531,7 @@ "cimguiname": "ImDrawList_PrimRect", "defaults": [], "funcname": "PrimRect", - "location": "imgui", + "location": "imgui:2164", "ov_cimguiname": "ImDrawList_PrimRect", "ret": "void", "signature": "(const ImVec2,const ImVec2,ImU32)", @@ -2568,7 +2572,7 @@ "cimguiname": "ImDrawList_PrimRectUV", "defaults": [], "funcname": "PrimRectUV", - "location": "imgui", + "location": "imgui:2165", "ov_cimguiname": "ImDrawList_PrimRectUV", "ret": "void", "signature": "(const ImVec2,const ImVec2,const ImVec2,const ImVec2,ImU32)", @@ -2597,7 +2601,7 @@ "cimguiname": "ImDrawList_PrimReserve", "defaults": [], "funcname": "PrimReserve", - "location": "imgui", + "location": "imgui:2162", "ov_cimguiname": "ImDrawList_PrimReserve", "ret": "void", "signature": "(int,int)", @@ -2626,7 +2630,7 @@ "cimguiname": "ImDrawList_PrimUnreserve", "defaults": [], "funcname": "PrimUnreserve", - "location": "imgui", + "location": "imgui:2163", "ov_cimguiname": "ImDrawList_PrimUnreserve", "ret": "void", "signature": "(int,int)", @@ -2659,7 +2663,7 @@ "cimguiname": "ImDrawList_PrimVtx", "defaults": [], "funcname": "PrimVtx", - "location": "imgui", + "location": "imgui:2169", "ov_cimguiname": "ImDrawList_PrimVtx", "ret": "void", "signature": "(const ImVec2,const ImVec2,ImU32)", @@ -2684,7 +2688,7 @@ "cimguiname": "ImDrawList_PrimWriteIdx", "defaults": [], "funcname": "PrimWriteIdx", - "location": "imgui", + "location": "imgui:2168", "ov_cimguiname": "ImDrawList_PrimWriteIdx", "ret": "void", "signature": "(ImDrawIdx)", @@ -2717,7 +2721,7 @@ "cimguiname": "ImDrawList_PrimWriteVtx", "defaults": [], "funcname": "PrimWriteVtx", - "location": "imgui", + "location": "imgui:2167", "ov_cimguiname": "ImDrawList_PrimWriteVtx", "ret": "void", "signature": "(const ImVec2,const ImVec2,ImU32)", @@ -2752,7 +2756,7 @@ "intersect_with_current_clip_rect": "false" }, "funcname": "PushClipRect", - "location": "imgui", + "location": "imgui:2093", "ov_cimguiname": "ImDrawList_PushClipRect", "ret": "void", "signature": "(ImVec2,ImVec2,bool)", @@ -2773,7 +2777,7 @@ "cimguiname": "ImDrawList_PushClipRectFullScreen", "defaults": [], "funcname": "PushClipRectFullScreen", - "location": "imgui", + "location": "imgui:2094", "ov_cimguiname": "ImDrawList_PushClipRectFullScreen", "ret": "void", "signature": "()", @@ -2798,7 +2802,7 @@ "cimguiname": "ImDrawList_PushTextureID", "defaults": [], "funcname": "PushTextureID", - "location": "imgui", + "location": "imgui:2096", "ov_cimguiname": "ImDrawList_PushTextureID", "ret": "void", "signature": "(ImTextureID)", @@ -2819,7 +2823,7 @@ "cimguiname": "ImDrawList__ClearFreeMemory", "defaults": [], "funcname": "_ClearFreeMemory", - "location": "imgui", + "location": "imgui:2173", "ov_cimguiname": "ImDrawList__ClearFreeMemory", "ret": "void", "signature": "()", @@ -2840,7 +2844,7 @@ "cimguiname": "ImDrawList__OnChangedClipRect", "defaults": [], "funcname": "_OnChangedClipRect", - "location": "imgui", + "location": "imgui:2175", "ov_cimguiname": "ImDrawList__OnChangedClipRect", "ret": "void", "signature": "()", @@ -2861,7 +2865,7 @@ "cimguiname": "ImDrawList__OnChangedTextureID", "defaults": [], "funcname": "_OnChangedTextureID", - "location": "imgui", + "location": "imgui:2176", "ov_cimguiname": "ImDrawList__OnChangedTextureID", "ret": "void", "signature": "()", @@ -2882,7 +2886,7 @@ "cimguiname": "ImDrawList__OnChangedVtxOffset", "defaults": [], "funcname": "_OnChangedVtxOffset", - "location": "imgui", + "location": "imgui:2177", "ov_cimguiname": "ImDrawList__OnChangedVtxOffset", "ret": "void", "signature": "()", @@ -2903,7 +2907,7 @@ "cimguiname": "ImDrawList__PopUnusedDrawCmd", "defaults": [], "funcname": "_PopUnusedDrawCmd", - "location": "imgui", + "location": "imgui:2174", "ov_cimguiname": "ImDrawList__PopUnusedDrawCmd", "ret": "void", "signature": "()", @@ -2924,7 +2928,7 @@ "cimguiname": "ImDrawList__ResetForNewFrame", "defaults": [], "funcname": "_ResetForNewFrame", - "location": "imgui", + "location": "imgui:2172", "ov_cimguiname": "ImDrawList__ResetForNewFrame", "ret": "void", "signature": "()", @@ -2944,7 +2948,9 @@ "cimguiname": "ImDrawList_destroy", "defaults": [], "destructor": true, + "location": "imgui:2092", "ov_cimguiname": "ImDrawList_destroy", + "realdestructor": true, "ret": "void", "signature": "(ImDrawList*)", "stname": "ImDrawList" @@ -2960,7 +2966,7 @@ "constructor": true, "defaults": [], "funcname": "ImFontAtlasCustomRect", - "location": "imgui", + "location": "imgui:2269", "ov_cimguiname": "ImFontAtlasCustomRect_ImFontAtlasCustomRect", "signature": "()", "stname": "ImFontAtlasCustomRect" @@ -2980,7 +2986,7 @@ "cimguiname": "ImFontAtlasCustomRect_IsPacked", "defaults": [], "funcname": "IsPacked", - "location": "imgui", + "location": "imgui:2270", "ov_cimguiname": "ImFontAtlasCustomRect_IsPacked", "ret": "bool", "signature": "()const", @@ -3046,7 +3052,7 @@ "offset": "ImVec2(0,0)" }, "funcname": "AddCustomRectFontGlyph", - "location": "imgui", + "location": "imgui:2352", "ov_cimguiname": "ImFontAtlas_AddCustomRectFontGlyph", "ret": "int", "signature": "(ImFont*,ImWchar,int,int,float,const ImVec2)", @@ -3075,7 +3081,7 @@ "cimguiname": "ImFontAtlas_AddCustomRectRegular", "defaults": [], "funcname": "AddCustomRectRegular", - "location": "imgui", + "location": "imgui:2351", "ov_cimguiname": "ImFontAtlas_AddCustomRectRegular", "ret": "int", "signature": "(int,int)", @@ -3100,7 +3106,7 @@ "cimguiname": "ImFontAtlas_AddFont", "defaults": [], "funcname": "AddFont", - "location": "imgui", + "location": "imgui:2303", "ov_cimguiname": "ImFontAtlas_AddFont", "ret": "ImFont*", "signature": "(const ImFontConfig*)", @@ -3124,10 +3130,10 @@ "call_args": "(font_cfg)", "cimguiname": "ImFontAtlas_AddFontDefault", "defaults": { - "font_cfg": "((void*)0)" + "font_cfg": "NULL" }, "funcname": "AddFontDefault", - "location": "imgui", + "location": "imgui:2304", "ov_cimguiname": "ImFontAtlas_AddFontDefault", "ret": "ImFont*", "signature": "(const ImFontConfig*)", @@ -3163,11 +3169,11 @@ "call_args": "(filename,size_pixels,font_cfg,glyph_ranges)", "cimguiname": "ImFontAtlas_AddFontFromFileTTF", "defaults": { - "font_cfg": "((void*)0)", - "glyph_ranges": "((void*)0)" + "font_cfg": "NULL", + "glyph_ranges": "NULL" }, "funcname": "AddFontFromFileTTF", - "location": "imgui", + "location": "imgui:2305", "ov_cimguiname": "ImFontAtlas_AddFontFromFileTTF", "ret": "ImFont*", "signature": "(const char*,float,const ImFontConfig*,const ImWchar*)", @@ -3203,11 +3209,11 @@ "call_args": "(compressed_font_data_base85,size_pixels,font_cfg,glyph_ranges)", "cimguiname": "ImFontAtlas_AddFontFromMemoryCompressedBase85TTF", "defaults": { - "font_cfg": "((void*)0)", - "glyph_ranges": "((void*)0)" + "font_cfg": "NULL", + "glyph_ranges": "NULL" }, "funcname": "AddFontFromMemoryCompressedBase85TTF", - "location": "imgui", + "location": "imgui:2308", "ov_cimguiname": "ImFontAtlas_AddFontFromMemoryCompressedBase85TTF", "ret": "ImFont*", "signature": "(const char*,float,const ImFontConfig*,const ImWchar*)", @@ -3247,11 +3253,11 @@ "call_args": "(compressed_font_data,compressed_font_size,size_pixels,font_cfg,glyph_ranges)", "cimguiname": "ImFontAtlas_AddFontFromMemoryCompressedTTF", "defaults": { - "font_cfg": "((void*)0)", - "glyph_ranges": "((void*)0)" + "font_cfg": "NULL", + "glyph_ranges": "NULL" }, "funcname": "AddFontFromMemoryCompressedTTF", - "location": "imgui", + "location": "imgui:2307", "ov_cimguiname": "ImFontAtlas_AddFontFromMemoryCompressedTTF", "ret": "ImFont*", "signature": "(const void*,int,float,const ImFontConfig*,const ImWchar*)", @@ -3291,11 +3297,11 @@ "call_args": "(font_data,font_size,size_pixels,font_cfg,glyph_ranges)", "cimguiname": "ImFontAtlas_AddFontFromMemoryTTF", "defaults": { - "font_cfg": "((void*)0)", - "glyph_ranges": "((void*)0)" + "font_cfg": "NULL", + "glyph_ranges": "NULL" }, "funcname": "AddFontFromMemoryTTF", - "location": "imgui", + "location": "imgui:2306", "ov_cimguiname": "ImFontAtlas_AddFontFromMemoryTTF", "ret": "ImFont*", "signature": "(void*,int,float,const ImFontConfig*,const ImWchar*)", @@ -3316,7 +3322,7 @@ "cimguiname": "ImFontAtlas_Build", "defaults": [], "funcname": "Build", - "location": "imgui", + "location": "imgui:2319", "ov_cimguiname": "ImFontAtlas_Build", "ret": "bool", "signature": "()", @@ -3349,7 +3355,7 @@ "cimguiname": "ImFontAtlas_CalcCustomRectUV", "defaults": [], "funcname": "CalcCustomRectUV", - "location": "imgui", + "location": "imgui:2356", "ov_cimguiname": "ImFontAtlas_CalcCustomRectUV", "ret": "void", "signature": "(const ImFontAtlasCustomRect*,ImVec2*,ImVec2*)const", @@ -3370,7 +3376,7 @@ "cimguiname": "ImFontAtlas_Clear", "defaults": [], "funcname": "Clear", - "location": "imgui", + "location": "imgui:2312", "ov_cimguiname": "ImFontAtlas_Clear", "ret": "void", "signature": "()", @@ -3391,7 +3397,7 @@ "cimguiname": "ImFontAtlas_ClearFonts", "defaults": [], "funcname": "ClearFonts", - "location": "imgui", + "location": "imgui:2311", "ov_cimguiname": "ImFontAtlas_ClearFonts", "ret": "void", "signature": "()", @@ -3412,7 +3418,7 @@ "cimguiname": "ImFontAtlas_ClearInputData", "defaults": [], "funcname": "ClearInputData", - "location": "imgui", + "location": "imgui:2309", "ov_cimguiname": "ImFontAtlas_ClearInputData", "ret": "void", "signature": "()", @@ -3433,7 +3439,7 @@ "cimguiname": "ImFontAtlas_ClearTexData", "defaults": [], "funcname": "ClearTexData", - "location": "imgui", + "location": "imgui:2310", "ov_cimguiname": "ImFontAtlas_ClearTexData", "ret": "void", "signature": "()", @@ -3458,7 +3464,7 @@ "cimguiname": "ImFontAtlas_GetCustomRectByIndex", "defaults": [], "funcname": "GetCustomRectByIndex", - "location": "imgui", + "location": "imgui:2353", "ov_cimguiname": "ImFontAtlas_GetCustomRectByIndex", "ret": "ImFontAtlasCustomRect*", "signature": "(int)", @@ -3479,7 +3485,7 @@ "cimguiname": "ImFontAtlas_GetGlyphRangesChineseFull", "defaults": [], "funcname": "GetGlyphRangesChineseFull", - "location": "imgui", + "location": "imgui:2335", "ov_cimguiname": "ImFontAtlas_GetGlyphRangesChineseFull", "ret": "const ImWchar*", "signature": "()", @@ -3500,7 +3506,7 @@ "cimguiname": "ImFontAtlas_GetGlyphRangesChineseSimplifiedCommon", "defaults": [], "funcname": "GetGlyphRangesChineseSimplifiedCommon", - "location": "imgui", + "location": "imgui:2336", "ov_cimguiname": "ImFontAtlas_GetGlyphRangesChineseSimplifiedCommon", "ret": "const ImWchar*", "signature": "()", @@ -3521,7 +3527,7 @@ "cimguiname": "ImFontAtlas_GetGlyphRangesCyrillic", "defaults": [], "funcname": "GetGlyphRangesCyrillic", - "location": "imgui", + "location": "imgui:2337", "ov_cimguiname": "ImFontAtlas_GetGlyphRangesCyrillic", "ret": "const ImWchar*", "signature": "()", @@ -3542,7 +3548,7 @@ "cimguiname": "ImFontAtlas_GetGlyphRangesDefault", "defaults": [], "funcname": "GetGlyphRangesDefault", - "location": "imgui", + "location": "imgui:2332", "ov_cimguiname": "ImFontAtlas_GetGlyphRangesDefault", "ret": "const ImWchar*", "signature": "()", @@ -3563,7 +3569,7 @@ "cimguiname": "ImFontAtlas_GetGlyphRangesJapanese", "defaults": [], "funcname": "GetGlyphRangesJapanese", - "location": "imgui", + "location": "imgui:2334", "ov_cimguiname": "ImFontAtlas_GetGlyphRangesJapanese", "ret": "const ImWchar*", "signature": "()", @@ -3584,7 +3590,7 @@ "cimguiname": "ImFontAtlas_GetGlyphRangesKorean", "defaults": [], "funcname": "GetGlyphRangesKorean", - "location": "imgui", + "location": "imgui:2333", "ov_cimguiname": "ImFontAtlas_GetGlyphRangesKorean", "ret": "const ImWchar*", "signature": "()", @@ -3605,7 +3611,7 @@ "cimguiname": "ImFontAtlas_GetGlyphRangesThai", "defaults": [], "funcname": "GetGlyphRangesThai", - "location": "imgui", + "location": "imgui:2338", "ov_cimguiname": "ImFontAtlas_GetGlyphRangesThai", "ret": "const ImWchar*", "signature": "()", @@ -3626,7 +3632,7 @@ "cimguiname": "ImFontAtlas_GetGlyphRangesVietnamese", "defaults": [], "funcname": "GetGlyphRangesVietnamese", - "location": "imgui", + "location": "imgui:2339", "ov_cimguiname": "ImFontAtlas_GetGlyphRangesVietnamese", "ret": "const ImWchar*", "signature": "()", @@ -3667,7 +3673,7 @@ "cimguiname": "ImFontAtlas_GetMouseCursorTexData", "defaults": [], "funcname": "GetMouseCursorTexData", - "location": "imgui", + "location": "imgui:2357", "ov_cimguiname": "ImFontAtlas_GetMouseCursorTexData", "ret": "bool", "signature": "(ImGuiMouseCursor,ImVec2*,ImVec2*,ImVec2[2],ImVec2[2])", @@ -3703,10 +3709,10 @@ "call_args": "(out_pixels,out_width,out_height,out_bytes_per_pixel)", "cimguiname": "ImFontAtlas_GetTexDataAsAlpha8", "defaults": { - "out_bytes_per_pixel": "((void*)0)" + "out_bytes_per_pixel": "NULL" }, "funcname": "GetTexDataAsAlpha8", - "location": "imgui", + "location": "imgui:2320", "ov_cimguiname": "ImFontAtlas_GetTexDataAsAlpha8", "ret": "void", "signature": "(unsigned char**,int*,int*,int*)", @@ -3742,10 +3748,10 @@ "call_args": "(out_pixels,out_width,out_height,out_bytes_per_pixel)", "cimguiname": "ImFontAtlas_GetTexDataAsRGBA32", "defaults": { - "out_bytes_per_pixel": "((void*)0)" + "out_bytes_per_pixel": "NULL" }, "funcname": "GetTexDataAsRGBA32", - "location": "imgui", + "location": "imgui:2321", "ov_cimguiname": "ImFontAtlas_GetTexDataAsRGBA32", "ret": "void", "signature": "(unsigned char**,int*,int*,int*)", @@ -3762,7 +3768,7 @@ "constructor": true, "defaults": [], "funcname": "ImFontAtlas", - "location": "imgui", + "location": "imgui:2301", "ov_cimguiname": "ImFontAtlas_ImFontAtlas", "signature": "()", "stname": "ImFontAtlas" @@ -3782,7 +3788,7 @@ "cimguiname": "ImFontAtlas_IsBuilt", "defaults": [], "funcname": "IsBuilt", - "location": "imgui", + "location": "imgui:2322", "ov_cimguiname": "ImFontAtlas_IsBuilt", "ret": "bool", "signature": "()const", @@ -3807,7 +3813,7 @@ "cimguiname": "ImFontAtlas_SetTexID", "defaults": [], "funcname": "SetTexID", - "location": "imgui", + "location": "imgui:2323", "ov_cimguiname": "ImFontAtlas_SetTexID", "ret": "void", "signature": "(ImTextureID)", @@ -3827,7 +3833,9 @@ "cimguiname": "ImFontAtlas_destroy", "defaults": [], "destructor": true, + "location": "imgui:2302", "ov_cimguiname": "ImFontAtlas_destroy", + "realdestructor": true, "ret": "void", "signature": "(ImFontAtlas*)", "stname": "ImFontAtlas" @@ -3843,7 +3851,7 @@ "constructor": true, "defaults": [], "funcname": "ImFontConfig", - "location": "imgui", + "location": "imgui:2230", "ov_cimguiname": "ImFontConfig_ImFontConfig", "signature": "()", "stname": "ImFontConfig" @@ -3886,7 +3894,7 @@ "cimguiname": "ImFontGlyphRangesBuilder_AddChar", "defaults": [], "funcname": "AddChar", - "location": "imgui", + "location": "imgui:2254", "ov_cimguiname": "ImFontGlyphRangesBuilder_AddChar", "ret": "void", "signature": "(ImWchar)", @@ -3911,7 +3919,7 @@ "cimguiname": "ImFontGlyphRangesBuilder_AddRanges", "defaults": [], "funcname": "AddRanges", - "location": "imgui", + "location": "imgui:2256", "ov_cimguiname": "ImFontGlyphRangesBuilder_AddRanges", "ret": "void", "signature": "(const ImWchar*)", @@ -3939,10 +3947,10 @@ "call_args": "(text,text_end)", "cimguiname": "ImFontGlyphRangesBuilder_AddText", "defaults": { - "text_end": "((void*)0)" + "text_end": "NULL" }, "funcname": "AddText", - "location": "imgui", + "location": "imgui:2255", "ov_cimguiname": "ImFontGlyphRangesBuilder_AddText", "ret": "void", "signature": "(const char*,const char*)", @@ -3967,7 +3975,7 @@ "cimguiname": "ImFontGlyphRangesBuilder_BuildRanges", "defaults": [], "funcname": "BuildRanges", - "location": "imgui", + "location": "imgui:2257", "ov_cimguiname": "ImFontGlyphRangesBuilder_BuildRanges", "ret": "void", "signature": "(ImVector_ImWchar*)", @@ -3988,7 +3996,7 @@ "cimguiname": "ImFontGlyphRangesBuilder_Clear", "defaults": [], "funcname": "Clear", - "location": "imgui", + "location": "imgui:2251", "ov_cimguiname": "ImFontGlyphRangesBuilder_Clear", "ret": "void", "signature": "()", @@ -4013,7 +4021,7 @@ "cimguiname": "ImFontGlyphRangesBuilder_GetBit", "defaults": [], "funcname": "GetBit", - "location": "imgui", + "location": "imgui:2252", "ov_cimguiname": "ImFontGlyphRangesBuilder_GetBit", "ret": "bool", "signature": "(size_t)const", @@ -4030,7 +4038,7 @@ "constructor": true, "defaults": [], "funcname": "ImFontGlyphRangesBuilder", - "location": "imgui", + "location": "imgui:2250", "ov_cimguiname": "ImFontGlyphRangesBuilder_ImFontGlyphRangesBuilder", "signature": "()", "stname": "ImFontGlyphRangesBuilder" @@ -4054,7 +4062,7 @@ "cimguiname": "ImFontGlyphRangesBuilder_SetBit", "defaults": [], "funcname": "SetBit", - "location": "imgui", + "location": "imgui:2253", "ov_cimguiname": "ImFontGlyphRangesBuilder_SetBit", "ret": "void", "signature": "(size_t)", @@ -4138,7 +4146,7 @@ "cimguiname": "ImFont_AddGlyph", "defaults": [], "funcname": "AddGlyph", - "location": "imgui", + "location": "imgui:2439", "ov_cimguiname": "ImFont_AddGlyph", "ret": "void", "signature": "(ImFontConfig*,ImWchar,float,float,float,float,float,float,float,float,float)", @@ -4173,7 +4181,7 @@ "overwrite_dst": "true" }, "funcname": "AddRemapChar", - "location": "imgui", + "location": "imgui:2440", "ov_cimguiname": "ImFont_AddRemapChar", "ret": "void", "signature": "(ImWchar,ImWchar,bool)", @@ -4194,7 +4202,7 @@ "cimguiname": "ImFont_BuildLookupTable", "defaults": [], "funcname": "BuildLookupTable", - "location": "imgui", + "location": "imgui:2436", "ov_cimguiname": "ImFont_BuildLookupTable", "ret": "void", "signature": "()", @@ -4242,11 +4250,11 @@ "call_args": "(size,max_width,wrap_width,text_begin,text_end,remaining)", "cimguiname": "ImFont_CalcTextSizeA", "defaults": { - "remaining": "((void*)0)", - "text_end": "((void*)0)" + "remaining": "NULL", + "text_end": "NULL" }, "funcname": "CalcTextSizeA", - "location": "imgui", + "location": "imgui:2430", "nonUDT": 1, "ov_cimguiname": "ImFont_CalcTextSizeA", "ret": "void", @@ -4284,7 +4292,7 @@ "cimguiname": "ImFont_CalcWordWrapPositionA", "defaults": [], "funcname": "CalcWordWrapPositionA", - "location": "imgui", + "location": "imgui:2431", "ov_cimguiname": "ImFont_CalcWordWrapPositionA", "ret": "const char*", "signature": "(float,const char*,const char*,float)const", @@ -4305,7 +4313,7 @@ "cimguiname": "ImFont_ClearOutputData", "defaults": [], "funcname": "ClearOutputData", - "location": "imgui", + "location": "imgui:2437", "ov_cimguiname": "ImFont_ClearOutputData", "ret": "void", "signature": "()", @@ -4330,7 +4338,7 @@ "cimguiname": "ImFont_FindGlyph", "defaults": [], "funcname": "FindGlyph", - "location": "imgui", + "location": "imgui:2422", "ov_cimguiname": "ImFont_FindGlyph", "ret": "const ImFontGlyph*", "signature": "(ImWchar)const", @@ -4355,7 +4363,7 @@ "cimguiname": "ImFont_FindGlyphNoFallback", "defaults": [], "funcname": "FindGlyphNoFallback", - "location": "imgui", + "location": "imgui:2423", "ov_cimguiname": "ImFont_FindGlyphNoFallback", "ret": "const ImFontGlyph*", "signature": "(ImWchar)const", @@ -4380,7 +4388,7 @@ "cimguiname": "ImFont_GetCharAdvance", "defaults": [], "funcname": "GetCharAdvance", - "location": "imgui", + "location": "imgui:2424", "ov_cimguiname": "ImFont_GetCharAdvance", "ret": "float", "signature": "(ImWchar)const", @@ -4401,7 +4409,7 @@ "cimguiname": "ImFont_GetDebugName", "defaults": [], "funcname": "GetDebugName", - "location": "imgui", + "location": "imgui:2426", "ov_cimguiname": "ImFont_GetDebugName", "ret": "const char*", "signature": "()const", @@ -4426,7 +4434,7 @@ "cimguiname": "ImFont_GrowIndex", "defaults": [], "funcname": "GrowIndex", - "location": "imgui", + "location": "imgui:2438", "ov_cimguiname": "ImFont_GrowIndex", "ret": "void", "signature": "(int)", @@ -4443,7 +4451,7 @@ "constructor": true, "defaults": [], "funcname": "ImFont", - "location": "imgui", + "location": "imgui:2420", "ov_cimguiname": "ImFont_ImFont", "signature": "()", "stname": "ImFont" @@ -4471,7 +4479,7 @@ "cimguiname": "ImFont_IsGlyphRangeUnused", "defaults": [], "funcname": "IsGlyphRangeUnused", - "location": "imgui", + "location": "imgui:2443", "ov_cimguiname": "ImFont_IsGlyphRangeUnused", "ret": "bool", "signature": "(unsigned int,unsigned int)", @@ -4492,7 +4500,7 @@ "cimguiname": "ImFont_IsLoaded", "defaults": [], "funcname": "IsLoaded", - "location": "imgui", + "location": "imgui:2425", "ov_cimguiname": "ImFont_IsLoaded", "ret": "bool", "signature": "()const", @@ -4533,7 +4541,7 @@ "cimguiname": "ImFont_RenderChar", "defaults": [], "funcname": "RenderChar", - "location": "imgui", + "location": "imgui:2432", "ov_cimguiname": "ImFont_RenderChar", "ret": "void", "signature": "(ImDrawList*,float,ImVec2,ImU32,ImWchar)const", @@ -4593,7 +4601,7 @@ "wrap_width": "0.0f" }, "funcname": "RenderText", - "location": "imgui", + "location": "imgui:2433", "ov_cimguiname": "ImFont_RenderText", "ret": "void", "signature": "(ImDrawList*,float,ImVec2,ImU32,const ImVec4,const char*,const char*,float,bool)const", @@ -4618,7 +4626,7 @@ "cimguiname": "ImFont_SetFallbackChar", "defaults": [], "funcname": "SetFallbackChar", - "location": "imgui", + "location": "imgui:2442", "ov_cimguiname": "ImFont_SetFallbackChar", "ret": "void", "signature": "(ImWchar)", @@ -4647,7 +4655,7 @@ "cimguiname": "ImFont_SetGlyphVisible", "defaults": [], "funcname": "SetGlyphVisible", - "location": "imgui", + "location": "imgui:2441", "ov_cimguiname": "ImFont_SetGlyphVisible", "ret": "void", "signature": "(ImWchar,bool)", @@ -4667,7 +4675,9 @@ "cimguiname": "ImFont_destroy", "defaults": [], "destructor": true, + "location": "imgui:2421", "ov_cimguiname": "ImFont_destroy", + "realdestructor": true, "ret": "void", "signature": "(ImFont*)", "stname": "ImFont" @@ -4683,7 +4693,7 @@ "constructor": true, "defaults": [], "funcname": "ImGuiColumnData", - "location": "internal", + "location": "imgui_internal:1000", "ov_cimguiname": "ImGuiColumnData_ImGuiColumnData", "signature": "()", "stname": "ImGuiColumnData" @@ -4722,7 +4732,7 @@ "cimguiname": "ImGuiColumns_Clear", "defaults": [], "funcname": "Clear", - "location": "internal", + "location": "imgui_internal:1022", "ov_cimguiname": "ImGuiColumns_Clear", "ret": "void", "signature": "()", @@ -4739,7 +4749,7 @@ "constructor": true, "defaults": [], "funcname": "ImGuiColumns", - "location": "internal", + "location": "imgui_internal:1021", "ov_cimguiname": "ImGuiColumns_ImGuiColumns", "signature": "()", "stname": "ImGuiColumns" @@ -4779,7 +4789,7 @@ "constructor": true, "defaults": [], "funcname": "ImGuiContext", - "location": "internal", + "location": "imgui_internal:1323", "ov_cimguiname": "ImGuiContext_ImGuiContext", "signature": "(ImFontAtlas*)", "stname": "ImGuiContext" @@ -4822,7 +4832,7 @@ "cimguiname": "ImGuiIO_AddInputCharacter", "defaults": [], "funcname": "AddInputCharacter", - "location": "imgui", + "location": "imgui:1576", "ov_cimguiname": "ImGuiIO_AddInputCharacter", "ret": "void", "signature": "(unsigned int)", @@ -4847,7 +4857,7 @@ "cimguiname": "ImGuiIO_AddInputCharacterUTF16", "defaults": [], "funcname": "AddInputCharacterUTF16", - "location": "imgui", + "location": "imgui:1577", "ov_cimguiname": "ImGuiIO_AddInputCharacterUTF16", "ret": "void", "signature": "(ImWchar16)", @@ -4872,7 +4882,7 @@ "cimguiname": "ImGuiIO_AddInputCharactersUTF8", "defaults": [], "funcname": "AddInputCharactersUTF8", - "location": "imgui", + "location": "imgui:1578", "ov_cimguiname": "ImGuiIO_AddInputCharactersUTF8", "ret": "void", "signature": "(const char*)", @@ -4893,7 +4903,7 @@ "cimguiname": "ImGuiIO_ClearInputCharacters", "defaults": [], "funcname": "ClearInputCharacters", - "location": "imgui", + "location": "imgui:1579", "ov_cimguiname": "ImGuiIO_ClearInputCharacters", "ret": "void", "signature": "()", @@ -4910,7 +4920,7 @@ "constructor": true, "defaults": [], "funcname": "ImGuiIO", - "location": "imgui", + "location": "imgui:1627", "ov_cimguiname": "ImGuiIO_ImGuiIO", "signature": "()", "stname": "ImGuiIO" @@ -4957,7 +4967,7 @@ "cimguiname": "ImGuiInputTextCallbackData_DeleteChars", "defaults": [], "funcname": "DeleteChars", - "location": "imgui", + "location": "imgui:1664", "ov_cimguiname": "ImGuiInputTextCallbackData_DeleteChars", "ret": "void", "signature": "(int,int)", @@ -4978,7 +4988,7 @@ "cimguiname": "ImGuiInputTextCallbackData_HasSelection", "defaults": [], "funcname": "HasSelection", - "location": "imgui", + "location": "imgui:1666", "ov_cimguiname": "ImGuiInputTextCallbackData_HasSelection", "ret": "bool", "signature": "()const", @@ -4995,7 +5005,7 @@ "constructor": true, "defaults": [], "funcname": "ImGuiInputTextCallbackData", - "location": "imgui", + "location": "imgui:1663", "ov_cimguiname": "ImGuiInputTextCallbackData_ImGuiInputTextCallbackData", "signature": "()", "stname": "ImGuiInputTextCallbackData" @@ -5026,10 +5036,10 @@ "call_args": "(pos,text,text_end)", "cimguiname": "ImGuiInputTextCallbackData_InsertChars", "defaults": { - "text_end": "((void*)0)" + "text_end": "NULL" }, "funcname": "InsertChars", - "location": "imgui", + "location": "imgui:1665", "ov_cimguiname": "ImGuiInputTextCallbackData_InsertChars", "ret": "void", "signature": "(int,const char*,const char*)", @@ -5069,7 +5079,7 @@ "cimguiname": "ImGuiInputTextState_ClearFreeMemory", "defaults": [], "funcname": "ClearFreeMemory", - "location": "internal", + "location": "imgui_internal:867", "ov_cimguiname": "ImGuiInputTextState_ClearFreeMemory", "ret": "void", "signature": "()", @@ -5090,7 +5100,7 @@ "cimguiname": "ImGuiInputTextState_ClearSelection", "defaults": [], "funcname": "ClearSelection", - "location": "internal", + "location": "imgui_internal:876", "ov_cimguiname": "ImGuiInputTextState_ClearSelection", "ret": "void", "signature": "()", @@ -5111,7 +5121,7 @@ "cimguiname": "ImGuiInputTextState_ClearText", "defaults": [], "funcname": "ClearText", - "location": "internal", + "location": "imgui_internal:866", "ov_cimguiname": "ImGuiInputTextState_ClearText", "ret": "void", "signature": "()", @@ -5132,7 +5142,7 @@ "cimguiname": "ImGuiInputTextState_CursorAnimReset", "defaults": [], "funcname": "CursorAnimReset", - "location": "internal", + "location": "imgui_internal:873", "ov_cimguiname": "ImGuiInputTextState_CursorAnimReset", "ret": "void", "signature": "()", @@ -5153,7 +5163,7 @@ "cimguiname": "ImGuiInputTextState_CursorClamp", "defaults": [], "funcname": "CursorClamp", - "location": "internal", + "location": "imgui_internal:874", "ov_cimguiname": "ImGuiInputTextState_CursorClamp", "ret": "void", "signature": "()", @@ -5174,7 +5184,7 @@ "cimguiname": "ImGuiInputTextState_GetRedoAvailCount", "defaults": [], "funcname": "GetRedoAvailCount", - "location": "internal", + "location": "imgui_internal:869", "ov_cimguiname": "ImGuiInputTextState_GetRedoAvailCount", "ret": "int", "signature": "()const", @@ -5195,7 +5205,7 @@ "cimguiname": "ImGuiInputTextState_GetUndoAvailCount", "defaults": [], "funcname": "GetUndoAvailCount", - "location": "internal", + "location": "imgui_internal:868", "ov_cimguiname": "ImGuiInputTextState_GetUndoAvailCount", "ret": "int", "signature": "()const", @@ -5216,7 +5226,7 @@ "cimguiname": "ImGuiInputTextState_HasSelection", "defaults": [], "funcname": "HasSelection", - "location": "internal", + "location": "imgui_internal:875", "ov_cimguiname": "ImGuiInputTextState_HasSelection", "ret": "bool", "signature": "()const", @@ -5233,7 +5243,7 @@ "constructor": true, "defaults": [], "funcname": "ImGuiInputTextState", - "location": "internal", + "location": "imgui_internal:865", "ov_cimguiname": "ImGuiInputTextState_ImGuiInputTextState", "signature": "()", "stname": "ImGuiInputTextState" @@ -5257,7 +5267,7 @@ "cimguiname": "ImGuiInputTextState_OnKeyPressed", "defaults": [], "funcname": "OnKeyPressed", - "location": "internal", + "location": "imgui_internal:870", "ov_cimguiname": "ImGuiInputTextState_OnKeyPressed", "ret": "void", "signature": "(int)", @@ -5278,7 +5288,7 @@ "cimguiname": "ImGuiInputTextState_SelectAll", "defaults": [], "funcname": "SelectAll", - "location": "internal", + "location": "imgui_internal:877", "ov_cimguiname": "ImGuiInputTextState_SelectAll", "ret": "void", "signature": "()", @@ -5318,7 +5328,7 @@ "cimguiname": "ImGuiLastItemDataBackup_Backup", "defaults": [], "funcname": "Backup", - "location": "internal", + "location": "imgui_internal:1680", "ov_cimguiname": "ImGuiLastItemDataBackup_Backup", "ret": "void", "signature": "()", @@ -5335,7 +5345,7 @@ "constructor": true, "defaults": [], "funcname": "ImGuiLastItemDataBackup", - "location": "internal", + "location": "imgui_internal:1679", "ov_cimguiname": "ImGuiLastItemDataBackup_ImGuiLastItemDataBackup", "signature": "()", "stname": "ImGuiLastItemDataBackup" @@ -5355,7 +5365,7 @@ "cimguiname": "ImGuiLastItemDataBackup_Restore", "defaults": [], "funcname": "Restore", - "location": "internal", + "location": "imgui_internal:1681", "ov_cimguiname": "ImGuiLastItemDataBackup_Restore", "ret": "void", "signature": "()const", @@ -5405,7 +5415,7 @@ "items_height": "-1.0f" }, "funcname": "Begin", - "location": "imgui", + "location": "imgui:1900", "ov_cimguiname": "ImGuiListClipper_Begin", "ret": "void", "signature": "(int,float)", @@ -5426,7 +5436,7 @@ "cimguiname": "ImGuiListClipper_End", "defaults": [], "funcname": "End", - "location": "imgui", + "location": "imgui:1901", "ov_cimguiname": "ImGuiListClipper_End", "ret": "void", "signature": "()", @@ -5455,7 +5465,7 @@ "items_height": "-1.0f" }, "funcname": "ImGuiListClipper", - "location": "imgui", + "location": "imgui:1896", "ov_cimguiname": "ImGuiListClipper_ImGuiListClipper", "signature": "(int,float)", "stname": "ImGuiListClipper" @@ -5475,7 +5485,7 @@ "cimguiname": "ImGuiListClipper_Step", "defaults": [], "funcname": "Step", - "location": "imgui", + "location": "imgui:1899", "ov_cimguiname": "ImGuiListClipper_Step", "ret": "bool", "signature": "()", @@ -5495,7 +5505,9 @@ "cimguiname": "ImGuiListClipper_destroy", "defaults": [], "destructor": true, + "location": "imgui:1897", "ov_cimguiname": "ImGuiListClipper_destroy", + "realdestructor": true, "ret": "void", "signature": "(ImGuiListClipper*)", "stname": "ImGuiListClipper" @@ -5519,7 +5531,7 @@ "cimguiname": "ImGuiMenuColumns_CalcExtraSpace", "defaults": [], "funcname": "CalcExtraSpace", - "location": "internal", + "location": "imgui_internal:842", "ov_cimguiname": "ImGuiMenuColumns_CalcExtraSpace", "ret": "float", "signature": "(float)const", @@ -5552,7 +5564,7 @@ "cimguiname": "ImGuiMenuColumns_DeclColumns", "defaults": [], "funcname": "DeclColumns", - "location": "internal", + "location": "imgui_internal:841", "ov_cimguiname": "ImGuiMenuColumns_DeclColumns", "ret": "float", "signature": "(float,float,float)", @@ -5569,7 +5581,7 @@ "constructor": true, "defaults": [], "funcname": "ImGuiMenuColumns", - "location": "internal", + "location": "imgui_internal:839", "ov_cimguiname": "ImGuiMenuColumns_ImGuiMenuColumns", "signature": "()", "stname": "ImGuiMenuColumns" @@ -5601,7 +5613,7 @@ "cimguiname": "ImGuiMenuColumns_Update", "defaults": [], "funcname": "Update", - "location": "internal", + "location": "imgui_internal:840", "ov_cimguiname": "ImGuiMenuColumns_Update", "ret": "void", "signature": "(int,float,bool)", @@ -5641,7 +5653,7 @@ "cimguiname": "ImGuiNavMoveResult_Clear", "defaults": [], "funcname": "Clear", - "location": "internal", + "location": "imgui_internal:905", "ov_cimguiname": "ImGuiNavMoveResult_Clear", "ret": "void", "signature": "()", @@ -5658,7 +5670,7 @@ "constructor": true, "defaults": [], "funcname": "ImGuiNavMoveResult", - "location": "internal", + "location": "imgui_internal:904", "ov_cimguiname": "ImGuiNavMoveResult_ImGuiNavMoveResult", "signature": "()", "stname": "ImGuiNavMoveResult" @@ -5697,7 +5709,7 @@ "cimguiname": "ImGuiNextItemData_ClearFlags", "defaults": [], "funcname": "ClearFlags", - "location": "internal", + "location": "imgui_internal:960", "ov_cimguiname": "ImGuiNextItemData_ClearFlags", "ret": "void", "signature": "()", @@ -5714,7 +5726,7 @@ "constructor": true, "defaults": [], "funcname": "ImGuiNextItemData", - "location": "internal", + "location": "imgui_internal:959", "ov_cimguiname": "ImGuiNextItemData_ImGuiNextItemData", "signature": "()", "stname": "ImGuiNextItemData" @@ -5753,7 +5765,7 @@ "cimguiname": "ImGuiNextWindowData_ClearFlags", "defaults": [], "funcname": "ClearFlags", - "location": "internal", + "location": "imgui_internal:941", "ov_cimguiname": "ImGuiNextWindowData_ClearFlags", "ret": "void", "signature": "()", @@ -5770,7 +5782,7 @@ "constructor": true, "defaults": [], "funcname": "ImGuiNextWindowData", - "location": "internal", + "location": "imgui_internal:940", "ov_cimguiname": "ImGuiNextWindowData_ImGuiNextWindowData", "signature": "()", "stname": "ImGuiNextWindowData" @@ -5805,7 +5817,7 @@ "constructor": true, "defaults": [], "funcname": "ImGuiOnceUponAFrame", - "location": "imgui", + "location": "imgui:1767", "ov_cimguiname": "ImGuiOnceUponAFrame_ImGuiOnceUponAFrame", "signature": "()", "stname": "ImGuiOnceUponAFrame" @@ -5844,7 +5856,7 @@ "cimguiname": "ImGuiPayload_Clear", "defaults": [], "funcname": "Clear", - "location": "imgui", + "location": "imgui:1695", "ov_cimguiname": "ImGuiPayload_Clear", "ret": "void", "signature": "()", @@ -5861,7 +5873,7 @@ "constructor": true, "defaults": [], "funcname": "ImGuiPayload", - "location": "imgui", + "location": "imgui:1694", "ov_cimguiname": "ImGuiPayload_ImGuiPayload", "signature": "()", "stname": "ImGuiPayload" @@ -5885,7 +5897,7 @@ "cimguiname": "ImGuiPayload_IsDataType", "defaults": [], "funcname": "IsDataType", - "location": "imgui", + "location": "imgui:1696", "ov_cimguiname": "ImGuiPayload_IsDataType", "ret": "bool", "signature": "(const char*)const", @@ -5906,7 +5918,7 @@ "cimguiname": "ImGuiPayload_IsDelivery", "defaults": [], "funcname": "IsDelivery", - "location": "imgui", + "location": "imgui:1698", "ov_cimguiname": "ImGuiPayload_IsDelivery", "ret": "bool", "signature": "()const", @@ -5927,7 +5939,7 @@ "cimguiname": "ImGuiPayload_IsPreview", "defaults": [], "funcname": "IsPreview", - "location": "imgui", + "location": "imgui:1697", "ov_cimguiname": "ImGuiPayload_IsPreview", "ret": "bool", "signature": "()const", @@ -5963,7 +5975,7 @@ "constructor": true, "defaults": [], "funcname": "ImGuiPopupData", - "location": "internal", + "location": "imgui_internal:891", "ov_cimguiname": "ImGuiPopupData_ImGuiPopupData", "signature": "()", "stname": "ImGuiPopupData" @@ -6003,7 +6015,7 @@ "constructor": true, "defaults": [], "funcname": "ImGuiPtrOrIndex", - "location": "internal", + "location": "imgui_internal:974", "ov_cimguiname": "ImGuiPtrOrIndex_ImGuiPtrOrIndexPtr", "signature": "(void*)", "stname": "ImGuiPtrOrIndex" @@ -6022,7 +6034,7 @@ "constructor": true, "defaults": [], "funcname": "ImGuiPtrOrIndex", - "location": "internal", + "location": "imgui_internal:975", "ov_cimguiname": "ImGuiPtrOrIndex_ImGuiPtrOrIndexInt", "signature": "(int)", "stname": "ImGuiPtrOrIndex" @@ -6057,7 +6069,7 @@ "constructor": true, "defaults": [], "funcname": "ImGuiSettingsHandler", - "location": "internal", + "location": "imgui_internal:1093", "ov_cimguiname": "ImGuiSettingsHandler_ImGuiSettingsHandler", "signature": "()", "stname": "ImGuiSettingsHandler" @@ -6101,7 +6113,7 @@ "constructor": true, "defaults": [], "funcname": "ImGuiStoragePair", - "location": "imgui", + "location": "imgui:1834", "ov_cimguiname": "ImGuiStoragePair_ImGuiStoragePairInt", "signature": "(ImGuiID,int)", "stname": "ImGuiStoragePair" @@ -6124,7 +6136,7 @@ "constructor": true, "defaults": [], "funcname": "ImGuiStoragePair", - "location": "imgui", + "location": "imgui:1835", "ov_cimguiname": "ImGuiStoragePair_ImGuiStoragePairFloat", "signature": "(ImGuiID,float)", "stname": "ImGuiStoragePair" @@ -6147,7 +6159,7 @@ "constructor": true, "defaults": [], "funcname": "ImGuiStoragePair", - "location": "imgui", + "location": "imgui:1836", "ov_cimguiname": "ImGuiStoragePair_ImGuiStoragePairPtr", "signature": "(ImGuiID,void*)", "stname": "ImGuiStoragePair" @@ -6186,7 +6198,7 @@ "cimguiname": "ImGuiStorage_BuildSortByKey", "defaults": [], "funcname": "BuildSortByKey", - "location": "imgui", + "location": "imgui:1867", "ov_cimguiname": "ImGuiStorage_BuildSortByKey", "ret": "void", "signature": "()", @@ -6207,7 +6219,7 @@ "cimguiname": "ImGuiStorage_Clear", "defaults": [], "funcname": "Clear", - "location": "imgui", + "location": "imgui:1844", "ov_cimguiname": "ImGuiStorage_Clear", "ret": "void", "signature": "()", @@ -6238,7 +6250,7 @@ "default_val": "false" }, "funcname": "GetBool", - "location": "imgui", + "location": "imgui:1847", "ov_cimguiname": "ImGuiStorage_GetBool", "ret": "bool", "signature": "(ImGuiID,bool)const", @@ -6269,7 +6281,7 @@ "default_val": "false" }, "funcname": "GetBoolRef", - "location": "imgui", + "location": "imgui:1859", "ov_cimguiname": "ImGuiStorage_GetBoolRef", "ret": "bool*", "signature": "(ImGuiID,bool)", @@ -6300,7 +6312,7 @@ "default_val": "0.0f" }, "funcname": "GetFloat", - "location": "imgui", + "location": "imgui:1849", "ov_cimguiname": "ImGuiStorage_GetFloat", "ret": "float", "signature": "(ImGuiID,float)const", @@ -6331,7 +6343,7 @@ "default_val": "0.0f" }, "funcname": "GetFloatRef", - "location": "imgui", + "location": "imgui:1860", "ov_cimguiname": "ImGuiStorage_GetFloatRef", "ret": "float*", "signature": "(ImGuiID,float)", @@ -6362,7 +6374,7 @@ "default_val": "0" }, "funcname": "GetInt", - "location": "imgui", + "location": "imgui:1845", "ov_cimguiname": "ImGuiStorage_GetInt", "ret": "int", "signature": "(ImGuiID,int)const", @@ -6393,7 +6405,7 @@ "default_val": "0" }, "funcname": "GetIntRef", - "location": "imgui", + "location": "imgui:1858", "ov_cimguiname": "ImGuiStorage_GetIntRef", "ret": "int*", "signature": "(ImGuiID,int)", @@ -6418,7 +6430,7 @@ "cimguiname": "ImGuiStorage_GetVoidPtr", "defaults": [], "funcname": "GetVoidPtr", - "location": "imgui", + "location": "imgui:1851", "ov_cimguiname": "ImGuiStorage_GetVoidPtr", "ret": "void*", "signature": "(ImGuiID)const", @@ -6446,10 +6458,10 @@ "call_args": "(key,default_val)", "cimguiname": "ImGuiStorage_GetVoidPtrRef", "defaults": { - "default_val": "((void*)0)" + "default_val": "NULL" }, "funcname": "GetVoidPtrRef", - "location": "imgui", + "location": "imgui:1861", "ov_cimguiname": "ImGuiStorage_GetVoidPtrRef", "ret": "void**", "signature": "(ImGuiID,void*)", @@ -6474,7 +6486,7 @@ "cimguiname": "ImGuiStorage_SetAllInt", "defaults": [], "funcname": "SetAllInt", - "location": "imgui", + "location": "imgui:1864", "ov_cimguiname": "ImGuiStorage_SetAllInt", "ret": "void", "signature": "(int)", @@ -6503,7 +6515,7 @@ "cimguiname": "ImGuiStorage_SetBool", "defaults": [], "funcname": "SetBool", - "location": "imgui", + "location": "imgui:1848", "ov_cimguiname": "ImGuiStorage_SetBool", "ret": "void", "signature": "(ImGuiID,bool)", @@ -6532,7 +6544,7 @@ "cimguiname": "ImGuiStorage_SetFloat", "defaults": [], "funcname": "SetFloat", - "location": "imgui", + "location": "imgui:1850", "ov_cimguiname": "ImGuiStorage_SetFloat", "ret": "void", "signature": "(ImGuiID,float)", @@ -6561,7 +6573,7 @@ "cimguiname": "ImGuiStorage_SetInt", "defaults": [], "funcname": "SetInt", - "location": "imgui", + "location": "imgui:1846", "ov_cimguiname": "ImGuiStorage_SetInt", "ret": "void", "signature": "(ImGuiID,int)", @@ -6590,7 +6602,7 @@ "cimguiname": "ImGuiStorage_SetVoidPtr", "defaults": [], "funcname": "SetVoidPtr", - "location": "imgui", + "location": "imgui:1852", "ov_cimguiname": "ImGuiStorage_SetVoidPtr", "ret": "void", "signature": "(ImGuiID,void*)", @@ -6616,7 +6628,7 @@ "constructor": true, "defaults": [], "funcname": "ImGuiStyleMod", - "location": "internal", + "location": "imgui_internal:813", "ov_cimguiname": "ImGuiStyleMod_ImGuiStyleModInt", "signature": "(ImGuiStyleVar,int)", "stname": "ImGuiStyleMod" @@ -6639,7 +6651,7 @@ "constructor": true, "defaults": [], "funcname": "ImGuiStyleMod", - "location": "internal", + "location": "imgui_internal:814", "ov_cimguiname": "ImGuiStyleMod_ImGuiStyleModFloat", "signature": "(ImGuiStyleVar,float)", "stname": "ImGuiStyleMod" @@ -6662,7 +6674,7 @@ "constructor": true, "defaults": [], "funcname": "ImGuiStyleMod", - "location": "internal", + "location": "imgui_internal:815", "ov_cimguiname": "ImGuiStyleMod_ImGuiStyleModVec2", "signature": "(ImGuiStyleVar,ImVec2)", "stname": "ImGuiStyleMod" @@ -6697,7 +6709,7 @@ "constructor": true, "defaults": [], "funcname": "ImGuiStyle", - "location": "imgui", + "location": "imgui:1483", "ov_cimguiname": "ImGuiStyle_ImGuiStyle", "signature": "()", "stname": "ImGuiStyle" @@ -6721,7 +6733,7 @@ "cimguiname": "ImGuiStyle_ScaleAllSizes", "defaults": [], "funcname": "ScaleAllSizes", - "location": "imgui", + "location": "imgui:1484", "ov_cimguiname": "ImGuiStyle_ScaleAllSizes", "ret": "void", "signature": "(float)", @@ -6765,7 +6777,7 @@ "cimguiname": "ImGuiTabBar_GetTabName", "defaults": [], "funcname": "GetTabName", - "location": "internal", + "location": "imgui_internal:1748", "ov_cimguiname": "ImGuiTabBar_GetTabName", "ret": "const char*", "signature": "(const ImGuiTabItem*)const", @@ -6790,7 +6802,7 @@ "cimguiname": "ImGuiTabBar_GetTabOrder", "defaults": [], "funcname": "GetTabOrder", - "location": "internal", + "location": "imgui_internal:1747", "ov_cimguiname": "ImGuiTabBar_GetTabOrder", "ret": "int", "signature": "(const ImGuiTabItem*)const", @@ -6807,7 +6819,7 @@ "constructor": true, "defaults": [], "funcname": "ImGuiTabBar", - "location": "internal", + "location": "imgui_internal:1746", "ov_cimguiname": "ImGuiTabBar_ImGuiTabBar", "signature": "()", "stname": "ImGuiTabBar" @@ -6842,7 +6854,7 @@ "constructor": true, "defaults": [], "funcname": "ImGuiTabItem", - "location": "internal", + "location": "imgui_internal:1715", "ov_cimguiname": "ImGuiTabItem_ImGuiTabItem", "signature": "()", "stname": "ImGuiTabItem" @@ -6877,7 +6889,7 @@ "constructor": true, "defaults": [], "funcname": "ImGuiTextBuffer", - "location": "imgui", + "location": "imgui:1805", "ov_cimguiname": "ImGuiTextBuffer_ImGuiTextBuffer", "signature": "()", "stname": "ImGuiTextBuffer" @@ -6904,10 +6916,10 @@ "call_args": "(str,str_end)", "cimguiname": "ImGuiTextBuffer_append", "defaults": { - "str_end": "((void*)0)" + "str_end": "NULL" }, "funcname": "append", - "location": "imgui", + "location": "imgui:1814", "ov_cimguiname": "ImGuiTextBuffer_append", "ret": "void", "signature": "(const char*,const char*)", @@ -6937,7 +6949,7 @@ "defaults": [], "funcname": "appendf", "isvararg": "...)", - "location": "imgui", + "location": "imgui:1815", "manual": true, "ov_cimguiname": "ImGuiTextBuffer_appendf", "ret": "void", @@ -6967,7 +6979,7 @@ "cimguiname": "ImGuiTextBuffer_appendfv", "defaults": [], "funcname": "appendfv", - "location": "imgui", + "location": "imgui:1816", "ov_cimguiname": "ImGuiTextBuffer_appendfv", "ret": "void", "signature": "(const char*,va_list)", @@ -6988,7 +7000,7 @@ "cimguiname": "ImGuiTextBuffer_begin", "defaults": [], "funcname": "begin", - "location": "imgui", + "location": "imgui:1807", "ov_cimguiname": "ImGuiTextBuffer_begin", "ret": "const char*", "signature": "()const", @@ -7009,7 +7021,7 @@ "cimguiname": "ImGuiTextBuffer_c_str", "defaults": [], "funcname": "c_str", - "location": "imgui", + "location": "imgui:1813", "ov_cimguiname": "ImGuiTextBuffer_c_str", "ret": "const char*", "signature": "()const", @@ -7030,7 +7042,7 @@ "cimguiname": "ImGuiTextBuffer_clear", "defaults": [], "funcname": "clear", - "location": "imgui", + "location": "imgui:1811", "ov_cimguiname": "ImGuiTextBuffer_clear", "ret": "void", "signature": "()", @@ -7070,7 +7082,7 @@ "cimguiname": "ImGuiTextBuffer_empty", "defaults": [], "funcname": "empty", - "location": "imgui", + "location": "imgui:1810", "ov_cimguiname": "ImGuiTextBuffer_empty", "ret": "bool", "signature": "()const", @@ -7091,7 +7103,7 @@ "cimguiname": "ImGuiTextBuffer_end", "defaults": [], "funcname": "end", - "location": "imgui", + "location": "imgui:1808", "ov_cimguiname": "ImGuiTextBuffer_end", "ret": "const char*", "signature": "()const", @@ -7116,7 +7128,7 @@ "cimguiname": "ImGuiTextBuffer_reserve", "defaults": [], "funcname": "reserve", - "location": "imgui", + "location": "imgui:1812", "ov_cimguiname": "ImGuiTextBuffer_reserve", "ret": "void", "signature": "(int)", @@ -7137,7 +7149,7 @@ "cimguiname": "ImGuiTextBuffer_size", "defaults": [], "funcname": "size", - "location": "imgui", + "location": "imgui:1809", "ov_cimguiname": "ImGuiTextBuffer_size", "ret": "int", "signature": "()const", @@ -7158,7 +7170,7 @@ "cimguiname": "ImGuiTextFilter_Build", "defaults": [], "funcname": "Build", - "location": "imgui", + "location": "imgui:1778", "ov_cimguiname": "ImGuiTextFilter_Build", "ret": "void", "signature": "()", @@ -7179,7 +7191,7 @@ "cimguiname": "ImGuiTextFilter_Clear", "defaults": [], "funcname": "Clear", - "location": "imgui", + "location": "imgui:1779", "ov_cimguiname": "ImGuiTextFilter_Clear", "ret": "void", "signature": "()", @@ -7211,7 +7223,7 @@ "width": "0.0f" }, "funcname": "Draw", - "location": "imgui", + "location": "imgui:1776", "ov_cimguiname": "ImGuiTextFilter_Draw", "ret": "bool", "signature": "(const char*,float)", @@ -7235,7 +7247,7 @@ "default_filter": "\"\"" }, "funcname": "ImGuiTextFilter", - "location": "imgui", + "location": "imgui:1775", "ov_cimguiname": "ImGuiTextFilter_ImGuiTextFilter", "signature": "(const char*)", "stname": "ImGuiTextFilter" @@ -7255,7 +7267,7 @@ "cimguiname": "ImGuiTextFilter_IsActive", "defaults": [], "funcname": "IsActive", - "location": "imgui", + "location": "imgui:1780", "ov_cimguiname": "ImGuiTextFilter_IsActive", "ret": "bool", "signature": "()const", @@ -7283,10 +7295,10 @@ "call_args": "(text,text_end)", "cimguiname": "ImGuiTextFilter_PassFilter", "defaults": { - "text_end": "((void*)0)" + "text_end": "NULL" }, "funcname": "PassFilter", - "location": "imgui", + "location": "imgui:1777", "ov_cimguiname": "ImGuiTextFilter_PassFilter", "ret": "bool", "signature": "(const char*,const char*)const", @@ -7322,7 +7334,7 @@ "constructor": true, "defaults": [], "funcname": "ImGuiTextRange", - "location": "imgui", + "location": "imgui:1788", "ov_cimguiname": "ImGuiTextRange_ImGuiTextRangeNil", "signature": "()", "stname": "ImGuiTextRange" @@ -7345,7 +7357,7 @@ "constructor": true, "defaults": [], "funcname": "ImGuiTextRange", - "location": "imgui", + "location": "imgui:1789", "ov_cimguiname": "ImGuiTextRange_ImGuiTextRangeStr", "signature": "(const char*,const char*)", "stname": "ImGuiTextRange" @@ -7384,7 +7396,7 @@ "cimguiname": "ImGuiTextRange_empty", "defaults": [], "funcname": "empty", - "location": "imgui", + "location": "imgui:1790", "ov_cimguiname": "ImGuiTextRange_empty", "ret": "bool", "signature": "()const", @@ -7413,7 +7425,7 @@ "cimguiname": "ImGuiTextRange_split", "defaults": [], "funcname": "split", - "location": "imgui", + "location": "imgui:1791", "ov_cimguiname": "ImGuiTextRange_split", "ret": "void", "signature": "(char,ImVector_ImGuiTextRange*)const", @@ -7434,7 +7446,7 @@ "cimguiname": "ImGuiWindowSettings_GetName", "defaults": [], "funcname": "GetName", - "location": "internal", + "location": "imgui_internal:1078", "ov_cimguiname": "ImGuiWindowSettings_GetName", "ret": "char*", "signature": "()", @@ -7451,7 +7463,7 @@ "constructor": true, "defaults": [], "funcname": "ImGuiWindowSettings", - "location": "internal", + "location": "imgui_internal:1077", "ov_cimguiname": "ImGuiWindowSettings_ImGuiWindowSettings", "signature": "()", "stname": "ImGuiWindowSettings" @@ -7486,7 +7498,7 @@ "constructor": true, "defaults": [], "funcname": "ImGuiWindowTempData", - "location": "internal", + "location": "imgui_internal:1526", "ov_cimguiname": "ImGuiWindowTempData_ImGuiWindowTempData", "signature": "()", "stname": "ImGuiWindowTempData" @@ -7525,7 +7537,7 @@ "cimguiname": "ImGuiWindow_CalcFontSize", "defaults": [], "funcname": "CalcFontSize", - "location": "internal", + "location": "imgui_internal:1664", "ov_cimguiname": "ImGuiWindow_CalcFontSize", "ret": "float", "signature": "()const", @@ -7553,10 +7565,10 @@ "call_args": "(str,str_end)", "cimguiname": "ImGuiWindow_GetID", "defaults": { - "str_end": "((void*)0)" + "str_end": "NULL" }, "funcname": "GetID", - "location": "internal", + "location": "imgui_internal:1654", "ov_cimguiname": "ImGuiWindow_GetIDStr", "ret": "ImGuiID", "signature": "(const char*,const char*)", @@ -7579,7 +7591,7 @@ "cimguiname": "ImGuiWindow_GetID", "defaults": [], "funcname": "GetID", - "location": "internal", + "location": "imgui_internal:1655", "ov_cimguiname": "ImGuiWindow_GetIDPtr", "ret": "ImGuiID", "signature": "(const void*)", @@ -7602,7 +7614,7 @@ "cimguiname": "ImGuiWindow_GetID", "defaults": [], "funcname": "GetID", - "location": "internal", + "location": "imgui_internal:1656", "ov_cimguiname": "ImGuiWindow_GetIDInt", "ret": "ImGuiID", "signature": "(int)", @@ -7627,7 +7639,7 @@ "cimguiname": "ImGuiWindow_GetIDFromRectangle", "defaults": [], "funcname": "GetIDFromRectangle", - "location": "internal", + "location": "imgui_internal:1660", "ov_cimguiname": "ImGuiWindow_GetIDFromRectangle", "ret": "ImGuiID", "signature": "(const ImRect)", @@ -7655,10 +7667,10 @@ "call_args": "(str,str_end)", "cimguiname": "ImGuiWindow_GetIDNoKeepAlive", "defaults": { - "str_end": "((void*)0)" + "str_end": "NULL" }, "funcname": "GetIDNoKeepAlive", - "location": "internal", + "location": "imgui_internal:1657", "ov_cimguiname": "ImGuiWindow_GetIDNoKeepAliveStr", "ret": "ImGuiID", "signature": "(const char*,const char*)", @@ -7681,7 +7693,7 @@ "cimguiname": "ImGuiWindow_GetIDNoKeepAlive", "defaults": [], "funcname": "GetIDNoKeepAlive", - "location": "internal", + "location": "imgui_internal:1658", "ov_cimguiname": "ImGuiWindow_GetIDNoKeepAlivePtr", "ret": "ImGuiID", "signature": "(const void*)", @@ -7704,7 +7716,7 @@ "cimguiname": "ImGuiWindow_GetIDNoKeepAlive", "defaults": [], "funcname": "GetIDNoKeepAlive", - "location": "internal", + "location": "imgui_internal:1659", "ov_cimguiname": "ImGuiWindow_GetIDNoKeepAliveInt", "ret": "ImGuiID", "signature": "(int)", @@ -7730,7 +7742,7 @@ "constructor": true, "defaults": [], "funcname": "ImGuiWindow", - "location": "internal", + "location": "imgui_internal:1650", "ov_cimguiname": "ImGuiWindow_ImGuiWindow", "signature": "(ImGuiContext*,const char*)", "stname": "ImGuiWindow" @@ -7750,7 +7762,7 @@ "cimguiname": "ImGuiWindow_MenuBarHeight", "defaults": [], "funcname": "MenuBarHeight", - "location": "internal", + "location": "imgui_internal:1667", "ov_cimguiname": "ImGuiWindow_MenuBarHeight", "ret": "float", "signature": "()const", @@ -7775,7 +7787,7 @@ "cimguiname": "ImGuiWindow_MenuBarRect", "defaults": [], "funcname": "MenuBarRect", - "location": "internal", + "location": "imgui_internal:1668", "nonUDT": 1, "ov_cimguiname": "ImGuiWindow_MenuBarRect", "ret": "void", @@ -7801,7 +7813,7 @@ "cimguiname": "ImGuiWindow_Rect", "defaults": [], "funcname": "Rect", - "location": "internal", + "location": "imgui_internal:1663", "nonUDT": 1, "ov_cimguiname": "ImGuiWindow_Rect", "ret": "void", @@ -7823,7 +7835,7 @@ "cimguiname": "ImGuiWindow_TitleBarHeight", "defaults": [], "funcname": "TitleBarHeight", - "location": "internal", + "location": "imgui_internal:1665", "ov_cimguiname": "ImGuiWindow_TitleBarHeight", "ret": "float", "signature": "()const", @@ -7848,7 +7860,7 @@ "cimguiname": "ImGuiWindow_TitleBarRect", "defaults": [], "funcname": "TitleBarRect", - "location": "internal", + "location": "imgui_internal:1666", "nonUDT": 1, "ov_cimguiname": "ImGuiWindow_TitleBarRect", "ret": "void", @@ -7869,7 +7881,9 @@ "cimguiname": "ImGuiWindow_destroy", "defaults": [], "destructor": true, + "location": "imgui_internal:1652", "ov_cimguiname": "ImGuiWindow_destroy", + "realdestructor": true, "ret": "void", "signature": "(ImGuiWindow*)", "stname": "ImGuiWindow" @@ -7889,7 +7903,7 @@ "cimguiname": "ImPool_Add", "defaults": [], "funcname": "Add", - "location": "internal", + "location": "imgui_internal:497", "ov_cimguiname": "ImPool_Add", "ret": "T*", "signature": "()", @@ -7911,7 +7925,7 @@ "cimguiname": "ImPool_Clear", "defaults": [], "funcname": "Clear", - "location": "internal", + "location": "imgui_internal:496", "ov_cimguiname": "ImPool_Clear", "ret": "void", "signature": "()", @@ -7937,7 +7951,7 @@ "cimguiname": "ImPool_Contains", "defaults": [], "funcname": "Contains", - "location": "internal", + "location": "imgui_internal:495", "ov_cimguiname": "ImPool_Contains", "ret": "bool", "signature": "(const T*)const", @@ -7963,7 +7977,7 @@ "cimguiname": "ImPool_GetByIndex", "defaults": [], "funcname": "GetByIndex", - "location": "internal", + "location": "imgui_internal:492", "ov_cimguiname": "ImPool_GetByIndex", "ret": "T*", "signature": "(ImPoolIdx)", @@ -7989,7 +8003,7 @@ "cimguiname": "ImPool_GetByKey", "defaults": [], "funcname": "GetByKey", - "location": "internal", + "location": "imgui_internal:491", "ov_cimguiname": "ImPool_GetByKey", "ret": "T*", "signature": "(ImGuiID)", @@ -8015,7 +8029,7 @@ "cimguiname": "ImPool_GetIndex", "defaults": [], "funcname": "GetIndex", - "location": "internal", + "location": "imgui_internal:493", "ov_cimguiname": "ImPool_GetIndex", "ret": "ImPoolIdx", "signature": "(const T*)const", @@ -8041,7 +8055,7 @@ "cimguiname": "ImPool_GetOrAddByKey", "defaults": [], "funcname": "GetOrAddByKey", - "location": "internal", + "location": "imgui_internal:494", "ov_cimguiname": "ImPool_GetOrAddByKey", "ret": "T*", "signature": "(ImGuiID)", @@ -8063,7 +8077,7 @@ "cimguiname": "ImPool_GetSize", "defaults": [], "funcname": "GetSize", - "location": "internal", + "location": "imgui_internal:501", "ov_cimguiname": "ImPool_GetSize", "ret": "int", "signature": "()const", @@ -8081,7 +8095,7 @@ "constructor": true, "defaults": [], "funcname": "ImPool", - "location": "internal", + "location": "imgui_internal:489", "ov_cimguiname": "ImPool_ImPool", "signature": "()", "stname": "ImPool", @@ -8110,7 +8124,7 @@ "cimguiname": "ImPool_Remove", "defaults": [], "funcname": "Remove", - "location": "internal", + "location": "imgui_internal:498", "ov_cimguiname": "ImPool_RemoveTPtr", "ret": "void", "signature": "(ImGuiID,const T*)", @@ -8138,7 +8152,7 @@ "cimguiname": "ImPool_Remove", "defaults": [], "funcname": "Remove", - "location": "internal", + "location": "imgui_internal:499", "ov_cimguiname": "ImPool_RemovePoolIdx", "ret": "void", "signature": "(ImGuiID,ImPoolIdx)", @@ -8164,7 +8178,7 @@ "cimguiname": "ImPool_Reserve", "defaults": [], "funcname": "Reserve", - "location": "internal", + "location": "imgui_internal:500", "ov_cimguiname": "ImPool_Reserve", "ret": "void", "signature": "(int)", @@ -8185,7 +8199,9 @@ "cimguiname": "ImPool_destroy", "defaults": [], "destructor": true, + "location": "imgui_internal:490", "ov_cimguiname": "ImPool_destroy", + "realdestructor": true, "ret": "void", "signature": "(ImPool*)", "stname": "ImPool", @@ -8210,7 +8226,7 @@ "cimguiname": "ImRect_Add", "defaults": [], "funcname": "Add", - "location": "internal", + "location": "imgui_internal:436", "ov_cimguiname": "ImRect_AddVec2", "ret": "void", "signature": "(const ImVec2)", @@ -8233,7 +8249,7 @@ "cimguiname": "ImRect_Add", "defaults": [], "funcname": "Add", - "location": "internal", + "location": "imgui_internal:437", "ov_cimguiname": "ImRect_AddRect", "ret": "void", "signature": "(const ImRect)", @@ -8258,7 +8274,7 @@ "cimguiname": "ImRect_ClipWith", "defaults": [], "funcname": "ClipWith", - "location": "internal", + "location": "imgui_internal:443", "ov_cimguiname": "ImRect_ClipWith", "ret": "void", "signature": "(const ImRect)", @@ -8283,7 +8299,7 @@ "cimguiname": "ImRect_ClipWithFull", "defaults": [], "funcname": "ClipWithFull", - "location": "internal", + "location": "imgui_internal:444", "ov_cimguiname": "ImRect_ClipWithFull", "ret": "void", "signature": "(const ImRect)", @@ -8308,7 +8324,7 @@ "cimguiname": "ImRect_Contains", "defaults": [], "funcname": "Contains", - "location": "internal", + "location": "imgui_internal:433", "ov_cimguiname": "ImRect_ContainsVec2", "ret": "bool", "signature": "(const ImVec2)const", @@ -8331,7 +8347,7 @@ "cimguiname": "ImRect_Contains", "defaults": [], "funcname": "Contains", - "location": "internal", + "location": "imgui_internal:434", "ov_cimguiname": "ImRect_ContainsRect", "ret": "bool", "signature": "(const ImRect)const", @@ -8356,7 +8372,7 @@ "cimguiname": "ImRect_Expand", "defaults": [], "funcname": "Expand", - "location": "internal", + "location": "imgui_internal:438", "ov_cimguiname": "ImRect_ExpandFloat", "ret": "void", "signature": "(const float)", @@ -8379,7 +8395,7 @@ "cimguiname": "ImRect_Expand", "defaults": [], "funcname": "Expand", - "location": "internal", + "location": "imgui_internal:439", "ov_cimguiname": "ImRect_ExpandVec2", "ret": "void", "signature": "(const ImVec2)", @@ -8400,7 +8416,7 @@ "cimguiname": "ImRect_Floor", "defaults": [], "funcname": "Floor", - "location": "internal", + "location": "imgui_internal:445", "ov_cimguiname": "ImRect_Floor", "ret": "void", "signature": "()", @@ -8425,7 +8441,7 @@ "cimguiname": "ImRect_GetBL", "defaults": [], "funcname": "GetBL", - "location": "internal", + "location": "imgui_internal:431", "nonUDT": 1, "ov_cimguiname": "ImRect_GetBL", "ret": "void", @@ -8451,7 +8467,7 @@ "cimguiname": "ImRect_GetBR", "defaults": [], "funcname": "GetBR", - "location": "internal", + "location": "imgui_internal:432", "nonUDT": 1, "ov_cimguiname": "ImRect_GetBR", "ret": "void", @@ -8477,7 +8493,7 @@ "cimguiname": "ImRect_GetCenter", "defaults": [], "funcname": "GetCenter", - "location": "internal", + "location": "imgui_internal:425", "nonUDT": 1, "ov_cimguiname": "ImRect_GetCenter", "ret": "void", @@ -8499,7 +8515,7 @@ "cimguiname": "ImRect_GetHeight", "defaults": [], "funcname": "GetHeight", - "location": "internal", + "location": "imgui_internal:428", "ov_cimguiname": "ImRect_GetHeight", "ret": "float", "signature": "()const", @@ -8524,7 +8540,7 @@ "cimguiname": "ImRect_GetSize", "defaults": [], "funcname": "GetSize", - "location": "internal", + "location": "imgui_internal:426", "nonUDT": 1, "ov_cimguiname": "ImRect_GetSize", "ret": "void", @@ -8550,7 +8566,7 @@ "cimguiname": "ImRect_GetTL", "defaults": [], "funcname": "GetTL", - "location": "internal", + "location": "imgui_internal:429", "nonUDT": 1, "ov_cimguiname": "ImRect_GetTL", "ret": "void", @@ -8576,7 +8592,7 @@ "cimguiname": "ImRect_GetTR", "defaults": [], "funcname": "GetTR", - "location": "internal", + "location": "imgui_internal:430", "nonUDT": 1, "ov_cimguiname": "ImRect_GetTR", "ret": "void", @@ -8598,7 +8614,7 @@ "cimguiname": "ImRect_GetWidth", "defaults": [], "funcname": "GetWidth", - "location": "internal", + "location": "imgui_internal:427", "ov_cimguiname": "ImRect_GetWidth", "ret": "float", "signature": "()const", @@ -8615,7 +8631,7 @@ "constructor": true, "defaults": [], "funcname": "ImRect", - "location": "internal", + "location": "imgui_internal:420", "ov_cimguiname": "ImRect_ImRectNil", "signature": "()", "stname": "ImRect" @@ -8638,7 +8654,7 @@ "constructor": true, "defaults": [], "funcname": "ImRect", - "location": "internal", + "location": "imgui_internal:421", "ov_cimguiname": "ImRect_ImRectVec2", "signature": "(const ImVec2,const ImVec2)", "stname": "ImRect" @@ -8657,7 +8673,7 @@ "constructor": true, "defaults": [], "funcname": "ImRect", - "location": "internal", + "location": "imgui_internal:422", "ov_cimguiname": "ImRect_ImRectVec4", "signature": "(const ImVec4)", "stname": "ImRect" @@ -8688,7 +8704,7 @@ "constructor": true, "defaults": [], "funcname": "ImRect", - "location": "internal", + "location": "imgui_internal:423", "ov_cimguiname": "ImRect_ImRectFloat", "signature": "(float,float,float,float)", "stname": "ImRect" @@ -8708,7 +8724,7 @@ "cimguiname": "ImRect_IsInverted", "defaults": [], "funcname": "IsInverted", - "location": "internal", + "location": "imgui_internal:446", "ov_cimguiname": "ImRect_IsInverted", "ret": "bool", "signature": "()const", @@ -8733,7 +8749,7 @@ "cimguiname": "ImRect_Overlaps", "defaults": [], "funcname": "Overlaps", - "location": "internal", + "location": "imgui_internal:435", "ov_cimguiname": "ImRect_Overlaps", "ret": "bool", "signature": "(const ImRect)const", @@ -8758,7 +8774,7 @@ "cimguiname": "ImRect_ToVec4", "defaults": [], "funcname": "ToVec4", - "location": "internal", + "location": "imgui_internal:447", "nonUDT": 1, "ov_cimguiname": "ImRect_ToVec4", "ret": "void", @@ -8784,7 +8800,7 @@ "cimguiname": "ImRect_Translate", "defaults": [], "funcname": "Translate", - "location": "internal", + "location": "imgui_internal:440", "ov_cimguiname": "ImRect_Translate", "ret": "void", "signature": "(const ImVec2)", @@ -8809,7 +8825,7 @@ "cimguiname": "ImRect_TranslateX", "defaults": [], "funcname": "TranslateX", - "location": "internal", + "location": "imgui_internal:441", "ov_cimguiname": "ImRect_TranslateX", "ret": "void", "signature": "(float)", @@ -8834,7 +8850,7 @@ "cimguiname": "ImRect_TranslateY", "defaults": [], "funcname": "TranslateY", - "location": "internal", + "location": "imgui_internal:442", "ov_cimguiname": "ImRect_TranslateY", "ret": "void", "signature": "(float)", @@ -8870,7 +8886,7 @@ "constructor": true, "defaults": [], "funcname": "ImVec1", - "location": "internal", + "location": "imgui_internal:400", "ov_cimguiname": "ImVec1_ImVec1Nil", "signature": "()", "stname": "ImVec1" @@ -8889,7 +8905,7 @@ "constructor": true, "defaults": [], "funcname": "ImVec1", - "location": "internal", + "location": "imgui_internal:401", "ov_cimguiname": "ImVec1_ImVec1Float", "signature": "(float)", "stname": "ImVec1" @@ -8924,7 +8940,7 @@ "constructor": true, "defaults": [], "funcname": "ImVec2", - "location": "imgui", + "location": "imgui:214", "ov_cimguiname": "ImVec2_ImVec2Nil", "signature": "()", "stname": "ImVec2" @@ -8947,7 +8963,7 @@ "constructor": true, "defaults": [], "funcname": "ImVec2", - "location": "imgui", + "location": "imgui:215", "ov_cimguiname": "ImVec2_ImVec2Float", "signature": "(float,float)", "stname": "ImVec2" @@ -8982,7 +8998,7 @@ "constructor": true, "defaults": [], "funcname": "ImVec2ih", - "location": "internal", + "location": "imgui_internal:408", "ov_cimguiname": "ImVec2ih_ImVec2ihNil", "signature": "()", "stname": "ImVec2ih" @@ -9005,7 +9021,7 @@ "constructor": true, "defaults": [], "funcname": "ImVec2ih", - "location": "internal", + "location": "imgui_internal:409", "ov_cimguiname": "ImVec2ih_ImVec2ihshort", "signature": "(short,short)", "stname": "ImVec2ih" @@ -9024,7 +9040,7 @@ "constructor": true, "defaults": [], "funcname": "ImVec2ih", - "location": "internal", + "location": "imgui_internal:410", "ov_cimguiname": "ImVec2ih_ImVec2ihVec2", "signature": "(const ImVec2)", "stname": "ImVec2ih" @@ -9059,7 +9075,7 @@ "constructor": true, "defaults": [], "funcname": "ImVec4", - "location": "imgui", + "location": "imgui:227", "ov_cimguiname": "ImVec4_ImVec4Nil", "signature": "()", "stname": "ImVec4" @@ -9090,7 +9106,7 @@ "constructor": true, "defaults": [], "funcname": "ImVec4", - "location": "imgui", + "location": "imgui:228", "ov_cimguiname": "ImVec4_ImVec4Float", "signature": "(float,float,float,float)", "stname": "ImVec4" @@ -9125,7 +9141,7 @@ "constructor": true, "defaults": [], "funcname": "ImVector", - "location": "imgui", + "location": "imgui:1389", "ov_cimguiname": "ImVector_ImVectorNil", "signature": "()", "stname": "ImVector", @@ -9145,7 +9161,7 @@ "constructor": true, "defaults": [], "funcname": "ImVector", - "location": "imgui", + "location": "imgui:1390", "ov_cimguiname": "ImVector_ImVectorVector", "signature": "(const ImVector)", "stname": "ImVector", @@ -9170,7 +9186,7 @@ "cimguiname": "ImVector__grow_capacity", "defaults": [], "funcname": "_grow_capacity", - "location": "imgui", + "location": "imgui:1412", "ov_cimguiname": "ImVector__grow_capacity", "ret": "int", "signature": "(int)const", @@ -9192,7 +9208,7 @@ "cimguiname": "ImVector_back", "defaults": [], "funcname": "back", - "location": "imgui", + "location": "imgui:1408", "ov_cimguiname": "ImVector_backNil", "ret": "T*", "retref": "&", @@ -9213,7 +9229,7 @@ "cimguiname": "ImVector_back", "defaults": [], "funcname": "back", - "location": "imgui", + "location": "imgui:1409", "ov_cimguiname": "ImVector_back_const", "ret": "const T*", "retref": "&", @@ -9236,7 +9252,7 @@ "cimguiname": "ImVector_begin", "defaults": [], "funcname": "begin", - "location": "imgui", + "location": "imgui:1402", "ov_cimguiname": "ImVector_beginNil", "ret": "T*", "signature": "()", @@ -9256,7 +9272,7 @@ "cimguiname": "ImVector_begin", "defaults": [], "funcname": "begin", - "location": "imgui", + "location": "imgui:1403", "ov_cimguiname": "ImVector_begin_const", "ret": "const T*", "signature": "()const", @@ -9278,7 +9294,7 @@ "cimguiname": "ImVector_capacity", "defaults": [], "funcname": "capacity", - "location": "imgui", + "location": "imgui:1397", "ov_cimguiname": "ImVector_capacity", "ret": "int", "signature": "()const", @@ -9300,7 +9316,7 @@ "cimguiname": "ImVector_clear", "defaults": [], "funcname": "clear", - "location": "imgui", + "location": "imgui:1401", "ov_cimguiname": "ImVector_clear", "ret": "void", "signature": "()", @@ -9326,7 +9342,7 @@ "cimguiname": "ImVector_contains", "defaults": [], "funcname": "contains", - "location": "imgui", + "location": "imgui:1426", "ov_cimguiname": "ImVector_contains", "ret": "bool", "signature": "(const T)const", @@ -9347,7 +9363,9 @@ "cimguiname": "ImVector_destroy", "defaults": [], "destructor": true, + "location": "imgui:1392", "ov_cimguiname": "ImVector_destroy", + "realdestructor": true, "ret": "void", "signature": "(ImVector*)", "stname": "ImVector", @@ -9368,7 +9386,7 @@ "cimguiname": "ImVector_empty", "defaults": [], "funcname": "empty", - "location": "imgui", + "location": "imgui:1394", "ov_cimguiname": "ImVector_empty", "ret": "bool", "signature": "()const", @@ -9390,7 +9408,7 @@ "cimguiname": "ImVector_end", "defaults": [], "funcname": "end", - "location": "imgui", + "location": "imgui:1404", "ov_cimguiname": "ImVector_endNil", "ret": "T*", "signature": "()", @@ -9410,7 +9428,7 @@ "cimguiname": "ImVector_end", "defaults": [], "funcname": "end", - "location": "imgui", + "location": "imgui:1405", "ov_cimguiname": "ImVector_end_const", "ret": "const T*", "signature": "()const", @@ -9436,7 +9454,7 @@ "cimguiname": "ImVector_erase", "defaults": [], "funcname": "erase", - "location": "imgui", + "location": "imgui:1422", "ov_cimguiname": "ImVector_eraseNil", "ret": "T*", "signature": "(const T*)", @@ -9464,7 +9482,7 @@ "cimguiname": "ImVector_erase", "defaults": [], "funcname": "erase", - "location": "imgui", + "location": "imgui:1423", "ov_cimguiname": "ImVector_eraseTPtr", "ret": "T*", "signature": "(const T*,const T*)", @@ -9490,7 +9508,7 @@ "cimguiname": "ImVector_erase_unsorted", "defaults": [], "funcname": "erase_unsorted", - "location": "imgui", + "location": "imgui:1424", "ov_cimguiname": "ImVector_erase_unsorted", "ret": "T*", "signature": "(const T*)", @@ -9516,7 +9534,7 @@ "cimguiname": "ImVector_find", "defaults": [], "funcname": "find", - "location": "imgui", + "location": "imgui:1427", "ov_cimguiname": "ImVector_findNil", "ret": "T*", "signature": "(const T)", @@ -9540,7 +9558,7 @@ "cimguiname": "ImVector_find", "defaults": [], "funcname": "find", - "location": "imgui", + "location": "imgui:1428", "ov_cimguiname": "ImVector_find_const", "ret": "const T*", "signature": "(const T)const", @@ -9566,7 +9584,7 @@ "cimguiname": "ImVector_find_erase", "defaults": [], "funcname": "find_erase", - "location": "imgui", + "location": "imgui:1429", "ov_cimguiname": "ImVector_find_erase", "ret": "bool", "signature": "(const T)", @@ -9592,7 +9610,7 @@ "cimguiname": "ImVector_find_erase_unsorted", "defaults": [], "funcname": "find_erase_unsorted", - "location": "imgui", + "location": "imgui:1430", "ov_cimguiname": "ImVector_find_erase_unsorted", "ret": "bool", "signature": "(const T)", @@ -9614,7 +9632,7 @@ "cimguiname": "ImVector_front", "defaults": [], "funcname": "front", - "location": "imgui", + "location": "imgui:1406", "ov_cimguiname": "ImVector_frontNil", "ret": "T*", "retref": "&", @@ -9635,7 +9653,7 @@ "cimguiname": "ImVector_front", "defaults": [], "funcname": "front", - "location": "imgui", + "location": "imgui:1407", "ov_cimguiname": "ImVector_front_const", "ret": "const T*", "retref": "&", @@ -9662,7 +9680,7 @@ "cimguiname": "ImVector_index_from_ptr", "defaults": [], "funcname": "index_from_ptr", - "location": "imgui", + "location": "imgui:1431", "ov_cimguiname": "ImVector_index_from_ptr", "ret": "int", "signature": "(const T*)const", @@ -9692,7 +9710,7 @@ "cimguiname": "ImVector_insert", "defaults": [], "funcname": "insert", - "location": "imgui", + "location": "imgui:1425", "ov_cimguiname": "ImVector_insert", "ret": "T*", "signature": "(const T*,const T)", @@ -9714,7 +9732,7 @@ "cimguiname": "ImVector_pop_back", "defaults": [], "funcname": "pop_back", - "location": "imgui", + "location": "imgui:1420", "ov_cimguiname": "ImVector_pop_back", "ret": "void", "signature": "()", @@ -9740,7 +9758,7 @@ "cimguiname": "ImVector_push_back", "defaults": [], "funcname": "push_back", - "location": "imgui", + "location": "imgui:1419", "ov_cimguiname": "ImVector_push_back", "ret": "void", "signature": "(const T)", @@ -9766,7 +9784,7 @@ "cimguiname": "ImVector_push_front", "defaults": [], "funcname": "push_front", - "location": "imgui", + "location": "imgui:1421", "ov_cimguiname": "ImVector_push_front", "ret": "void", "signature": "(const T)", @@ -9792,7 +9810,7 @@ "cimguiname": "ImVector_reserve", "defaults": [], "funcname": "reserve", - "location": "imgui", + "location": "imgui:1416", "ov_cimguiname": "ImVector_reserve", "ret": "void", "signature": "(int)", @@ -9818,7 +9836,7 @@ "cimguiname": "ImVector_resize", "defaults": [], "funcname": "resize", - "location": "imgui", + "location": "imgui:1413", "ov_cimguiname": "ImVector_resizeNil", "ret": "void", "signature": "(int)", @@ -9846,7 +9864,7 @@ "cimguiname": "ImVector_resize", "defaults": [], "funcname": "resize", - "location": "imgui", + "location": "imgui:1414", "ov_cimguiname": "ImVector_resizeT", "ret": "void", "signature": "(int,const T)", @@ -9872,7 +9890,7 @@ "cimguiname": "ImVector_shrink", "defaults": [], "funcname": "shrink", - "location": "imgui", + "location": "imgui:1415", "ov_cimguiname": "ImVector_shrink", "ret": "void", "signature": "(int)", @@ -9894,7 +9912,7 @@ "cimguiname": "ImVector_size", "defaults": [], "funcname": "size", - "location": "imgui", + "location": "imgui:1395", "ov_cimguiname": "ImVector_size", "ret": "int", "signature": "()const", @@ -9916,7 +9934,7 @@ "cimguiname": "ImVector_size_in_bytes", "defaults": [], "funcname": "size_in_bytes", - "location": "imgui", + "location": "imgui:1396", "ov_cimguiname": "ImVector_size_in_bytes", "ret": "int", "signature": "()const", @@ -9943,7 +9961,7 @@ "cimguiname": "ImVector_swap", "defaults": [], "funcname": "swap", - "location": "imgui", + "location": "imgui:1410", "ov_cimguiname": "ImVector_swap", "ret": "void", "signature": "(ImVector*)", @@ -9971,7 +9989,7 @@ "flags": "0" }, "funcname": "AcceptDragDropPayload", - "location": "imgui", + "location": "imgui:676", "namespace": "ImGui", "ov_cimguiname": "igAcceptDragDropPayload", "ret": "const ImGuiPayload*", @@ -9993,7 +10011,7 @@ "cimguiname": "igActivateItem", "defaults": [], "funcname": "ActivateItem", - "location": "internal", + "location": "imgui_internal:1885", "namespace": "ImGui", "ov_cimguiname": "igActivateItem", "ret": "void", @@ -10010,7 +10028,7 @@ "cimguiname": "igAlignTextToFramePadding", "defaults": [], "funcname": "AlignTextToFramePadding", - "location": "imgui", + "location": "imgui:400", "namespace": "ImGui", "ov_cimguiname": "igAlignTextToFramePadding", "ret": "void", @@ -10036,7 +10054,7 @@ "cimguiname": "igArrowButton", "defaults": [], "funcname": "ArrowButton", - "location": "imgui", + "location": "imgui:443", "namespace": "ImGui", "ov_cimguiname": "igArrowButton", "ret": "bool", @@ -10072,7 +10090,7 @@ "flags": "0" }, "funcname": "ArrowButtonEx", - "location": "internal", + "location": "imgui_internal:1970", "namespace": "ImGui", "ov_cimguiname": "igArrowButtonEx", "ret": "bool", @@ -10102,10 +10120,10 @@ "cimguiname": "igBegin", "defaults": { "flags": "0", - "p_open": "((void*)0)" + "p_open": "NULL" }, "funcname": "Begin", - "location": "imgui", + "location": "imgui:284", "namespace": "ImGui", "ov_cimguiname": "igBegin", "ret": "bool", @@ -10143,7 +10161,7 @@ "size": "ImVec2(0,0)" }, "funcname": "BeginChild", - "location": "imgui", + "location": "imgui:292", "namespace": "ImGui", "ov_cimguiname": "igBeginChildStr", "ret": "bool", @@ -10179,7 +10197,7 @@ "size": "ImVec2(0,0)" }, "funcname": "BeginChild", - "location": "imgui", + "location": "imgui:293", "namespace": "ImGui", "ov_cimguiname": "igBeginChildID", "ret": "bool", @@ -10217,7 +10235,7 @@ "cimguiname": "igBeginChildEx", "defaults": [], "funcname": "BeginChildEx", - "location": "internal", + "location": "imgui_internal:1865", "namespace": "ImGui", "ov_cimguiname": "igBeginChildEx", "ret": "bool", @@ -10249,7 +10267,7 @@ "flags": "0" }, "funcname": "BeginChildFrame", - "location": "imgui", + "location": "imgui:722", "namespace": "ImGui", "ov_cimguiname": "igBeginChildFrame", "ret": "bool", @@ -10281,7 +10299,7 @@ "flags": "0" }, "funcname": "BeginColumns", - "location": "internal", + "location": "imgui_internal:1914", "namespace": "ImGui", "ov_cimguiname": "igBeginColumns", "ret": "void", @@ -10313,7 +10331,7 @@ "flags": "0" }, "funcname": "BeginCombo", - "location": "imgui", + "location": "imgui:456", "namespace": "ImGui", "ov_cimguiname": "igBeginCombo", "ret": "bool", @@ -10337,7 +10355,7 @@ "flags": "0" }, "funcname": "BeginDragDropSource", - "location": "imgui", + "location": "imgui:672", "namespace": "ImGui", "ov_cimguiname": "igBeginDragDropSource", "ret": "bool", @@ -10354,7 +10372,7 @@ "cimguiname": "igBeginDragDropTarget", "defaults": [], "funcname": "BeginDragDropTarget", - "location": "imgui", + "location": "imgui:675", "namespace": "ImGui", "ov_cimguiname": "igBeginDragDropTarget", "ret": "bool", @@ -10380,7 +10398,7 @@ "cimguiname": "igBeginDragDropTargetCustom", "defaults": [], "funcname": "BeginDragDropTargetCustom", - "location": "internal", + "location": "imgui_internal:1908", "namespace": "ImGui", "ov_cimguiname": "igBeginDragDropTargetCustom", "ret": "bool", @@ -10397,7 +10415,7 @@ "cimguiname": "igBeginGroup", "defaults": [], "funcname": "BeginGroup", - "location": "imgui", + "location": "imgui:389", "namespace": "ImGui", "ov_cimguiname": "igBeginGroup", "ret": "void", @@ -10414,7 +10432,7 @@ "cimguiname": "igBeginMainMenuBar", "defaults": [], "funcname": "BeginMainMenuBar", - "location": "imgui", + "location": "imgui:588", "namespace": "ImGui", "ov_cimguiname": "igBeginMainMenuBar", "ret": "bool", @@ -10442,7 +10460,7 @@ "enabled": "true" }, "funcname": "BeginMenu", - "location": "imgui", + "location": "imgui:590", "namespace": "ImGui", "ov_cimguiname": "igBeginMenu", "ret": "bool", @@ -10459,7 +10477,7 @@ "cimguiname": "igBeginMenuBar", "defaults": [], "funcname": "BeginMenuBar", - "location": "imgui", + "location": "imgui:586", "namespace": "ImGui", "ov_cimguiname": "igBeginMenuBar", "ret": "bool", @@ -10487,7 +10505,7 @@ "flags": "0" }, "funcname": "BeginPopup", - "location": "imgui", + "location": "imgui:613", "namespace": "ImGui", "ov_cimguiname": "igBeginPopup", "ret": "bool", @@ -10513,10 +10531,10 @@ "cimguiname": "igBeginPopupContextItem", "defaults": { "popup_flags": "1", - "str_id": "((void*)0)" + "str_id": "NULL" }, "funcname": "BeginPopupContextItem", - "location": "imgui", + "location": "imgui:630", "namespace": "ImGui", "ov_cimguiname": "igBeginPopupContextItem", "ret": "bool", @@ -10542,10 +10560,10 @@ "cimguiname": "igBeginPopupContextVoid", "defaults": { "popup_flags": "1", - "str_id": "((void*)0)" + "str_id": "NULL" }, "funcname": "BeginPopupContextVoid", - "location": "imgui", + "location": "imgui:632", "namespace": "ImGui", "ov_cimguiname": "igBeginPopupContextVoid", "ret": "bool", @@ -10571,10 +10589,10 @@ "cimguiname": "igBeginPopupContextWindow", "defaults": { "popup_flags": "1", - "str_id": "((void*)0)" + "str_id": "NULL" }, "funcname": "BeginPopupContextWindow", - "location": "imgui", + "location": "imgui:631", "namespace": "ImGui", "ov_cimguiname": "igBeginPopupContextWindow", "ret": "bool", @@ -10600,7 +10618,7 @@ "cimguiname": "igBeginPopupEx", "defaults": [], "funcname": "BeginPopupEx", - "location": "internal", + "location": "imgui_internal:1870", "namespace": "ImGui", "ov_cimguiname": "igBeginPopupEx", "ret": "bool", @@ -10630,10 +10648,10 @@ "cimguiname": "igBeginPopupModal", "defaults": { "flags": "0", - "p_open": "((void*)0)" + "p_open": "NULL" }, "funcname": "BeginPopupModal", - "location": "imgui", + "location": "imgui:614", "namespace": "ImGui", "ov_cimguiname": "igBeginPopupModal", "ret": "bool", @@ -10661,7 +10679,7 @@ "flags": "0" }, "funcname": "BeginTabBar", - "location": "imgui", + "location": "imgui:654", "namespace": "ImGui", "ov_cimguiname": "igBeginTabBar", "ret": "bool", @@ -10691,7 +10709,7 @@ "cimguiname": "igBeginTabBarEx", "defaults": [], "funcname": "BeginTabBarEx", - "location": "internal", + "location": "imgui_internal:1925", "namespace": "ImGui", "ov_cimguiname": "igBeginTabBarEx", "ret": "bool", @@ -10721,10 +10739,10 @@ "cimguiname": "igBeginTabItem", "defaults": { "flags": "0", - "p_open": "((void*)0)" + "p_open": "NULL" }, "funcname": "BeginTabItem", - "location": "imgui", + "location": "imgui:656", "namespace": "ImGui", "ov_cimguiname": "igBeginTabItem", "ret": "bool", @@ -10741,7 +10759,7 @@ "cimguiname": "igBeginTooltip", "defaults": [], "funcname": "BeginTooltip", - "location": "imgui", + "location": "imgui:597", "namespace": "ImGui", "ov_cimguiname": "igBeginTooltip", "ret": "void", @@ -10767,7 +10785,7 @@ "cimguiname": "igBeginTooltipEx", "defaults": [], "funcname": "BeginTooltipEx", - "location": "internal", + "location": "imgui_internal:1871", "namespace": "ImGui", "ov_cimguiname": "igBeginTooltipEx", "ret": "void", @@ -10789,7 +10807,7 @@ "cimguiname": "igBringWindowToDisplayBack", "defaults": [], "funcname": "BringWindowToDisplayBack", - "location": "internal", + "location": "imgui_internal:1794", "namespace": "ImGui", "ov_cimguiname": "igBringWindowToDisplayBack", "ret": "void", @@ -10811,7 +10829,7 @@ "cimguiname": "igBringWindowToDisplayFront", "defaults": [], "funcname": "BringWindowToDisplayFront", - "location": "internal", + "location": "imgui_internal:1793", "namespace": "ImGui", "ov_cimguiname": "igBringWindowToDisplayFront", "ret": "void", @@ -10833,7 +10851,7 @@ "cimguiname": "igBringWindowToFocusFront", "defaults": [], "funcname": "BringWindowToFocusFront", - "location": "internal", + "location": "imgui_internal:1792", "namespace": "ImGui", "ov_cimguiname": "igBringWindowToFocusFront", "ret": "void", @@ -10850,7 +10868,7 @@ "cimguiname": "igBullet", "defaults": [], "funcname": "Bullet", - "location": "imgui", + "location": "imgui:451", "namespace": "ImGui", "ov_cimguiname": "igBullet", "ret": "void", @@ -10877,7 +10895,7 @@ "defaults": [], "funcname": "BulletText", "isvararg": "...)", - "location": "imgui", + "location": "imgui:434", "namespace": "ImGui", "ov_cimguiname": "igBulletText", "ret": "void", @@ -10903,7 +10921,7 @@ "cimguiname": "igBulletTextV", "defaults": [], "funcname": "BulletTextV", - "location": "imgui", + "location": "imgui:435", "namespace": "ImGui", "ov_cimguiname": "igBulletTextV", "ret": "void", @@ -10931,7 +10949,7 @@ "size": "ImVec2(0,0)" }, "funcname": "Button", - "location": "imgui", + "location": "imgui:440", "namespace": "ImGui", "ov_cimguiname": "igButton", "ret": "bool", @@ -10971,7 +10989,7 @@ "flags": "0" }, "funcname": "ButtonBehavior", - "location": "internal", + "location": "imgui_internal:1980", "namespace": "ImGui", "ov_cimguiname": "igButtonBehavior", "ret": "bool", @@ -11004,7 +11022,7 @@ "size_arg": "ImVec2(0,0)" }, "funcname": "ButtonEx", - "location": "internal", + "location": "imgui_internal:1967", "namespace": "ImGui", "ov_cimguiname": "igButtonEx", "ret": "bool", @@ -11038,7 +11056,7 @@ "cimguiname": "igCalcItemSize", "defaults": [], "funcname": "CalcItemSize", - "location": "internal", + "location": "imgui_internal:1851", "namespace": "ImGui", "nonUDT": 1, "ov_cimguiname": "igCalcItemSize", @@ -11056,7 +11074,7 @@ "cimguiname": "igCalcItemWidth", "defaults": [], "funcname": "CalcItemWidth", - "location": "imgui", + "location": "imgui:367", "namespace": "ImGui", "ov_cimguiname": "igCalcItemWidth", "ret": "float", @@ -11090,7 +11108,7 @@ "cimguiname": "igCalcListClipping", "defaults": [], "funcname": "CalcListClipping", - "location": "imgui", + "location": "imgui:721", "namespace": "ImGui", "ov_cimguiname": "igCalcListClipping", "ret": "void", @@ -11128,11 +11146,11 @@ "cimguiname": "igCalcTextSize", "defaults": { "hide_text_after_double_hash": "false", - "text_end": "((void*)0)", + "text_end": "NULL", "wrap_width": "-1.0f" }, "funcname": "CalcTextSize", - "location": "imgui", + "location": "imgui:726", "namespace": "ImGui", "nonUDT": 1, "ov_cimguiname": "igCalcTextSize", @@ -11167,7 +11185,7 @@ "cimguiname": "igCalcTypematicRepeatAmount", "defaults": [], "funcname": "CalcTypematicRepeatAmount", - "location": "internal", + "location": "imgui_internal:1884", "namespace": "ImGui", "ov_cimguiname": "igCalcTypematicRepeatAmount", "ret": "int", @@ -11193,7 +11211,7 @@ "cimguiname": "igCalcWindowExpectedSize", "defaults": [], "funcname": "CalcWindowExpectedSize", - "location": "internal", + "location": "imgui_internal:1780", "namespace": "ImGui", "nonUDT": 1, "ov_cimguiname": "igCalcWindowExpectedSize", @@ -11220,7 +11238,7 @@ "cimguiname": "igCalcWrapWidthForPos", "defaults": [], "funcname": "CalcWrapWidthForPos", - "location": "internal", + "location": "imgui_internal:1852", "namespace": "ImGui", "ov_cimguiname": "igCalcWrapWidthForPos", "ret": "float", @@ -11244,7 +11262,7 @@ "want_capture_keyboard_value": "true" }, "funcname": "CaptureKeyboardFromApp", - "location": "imgui", + "location": "imgui:742", "namespace": "ImGui", "ov_cimguiname": "igCaptureKeyboardFromApp", "ret": "void", @@ -11268,7 +11286,7 @@ "want_capture_mouse_value": "true" }, "funcname": "CaptureMouseFromApp", - "location": "imgui", + "location": "imgui:762", "namespace": "ImGui", "ov_cimguiname": "igCaptureMouseFromApp", "ret": "void", @@ -11294,7 +11312,7 @@ "cimguiname": "igCheckbox", "defaults": [], "funcname": "Checkbox", - "location": "imgui", + "location": "imgui:446", "namespace": "ImGui", "ov_cimguiname": "igCheckbox", "ret": "bool", @@ -11324,7 +11342,7 @@ "cimguiname": "igCheckboxFlags", "defaults": [], "funcname": "CheckboxFlags", - "location": "imgui", + "location": "imgui:447", "namespace": "ImGui", "ov_cimguiname": "igCheckboxFlags", "ret": "bool", @@ -11341,7 +11359,7 @@ "cimguiname": "igClearActiveID", "defaults": [], "funcname": "ClearActiveID", - "location": "internal", + "location": "imgui_internal:1835", "namespace": "ImGui", "ov_cimguiname": "igClearActiveID", "ret": "void", @@ -11358,7 +11376,7 @@ "cimguiname": "igClearDragDrop", "defaults": [], "funcname": "ClearDragDrop", - "location": "internal", + "location": "imgui_internal:1909", "namespace": "ImGui", "ov_cimguiname": "igClearDragDrop", "ret": "void", @@ -11375,7 +11393,7 @@ "cimguiname": "igClearIniSettings", "defaults": [], "funcname": "ClearIniSettings", - "location": "internal", + "location": "imgui_internal:1814", "namespace": "ImGui", "ov_cimguiname": "igClearIniSettings", "ret": "void", @@ -11401,7 +11419,7 @@ "cimguiname": "igCloseButton", "defaults": [], "funcname": "CloseButton", - "location": "internal", + "location": "imgui_internal:1968", "namespace": "ImGui", "ov_cimguiname": "igCloseButton", "ret": "bool", @@ -11418,7 +11436,7 @@ "cimguiname": "igCloseCurrentPopup", "defaults": [], "funcname": "CloseCurrentPopup", - "location": "imgui", + "location": "imgui:624", "namespace": "ImGui", "ov_cimguiname": "igCloseCurrentPopup", "ret": "void", @@ -11444,7 +11462,7 @@ "cimguiname": "igClosePopupToLevel", "defaults": [], "funcname": "ClosePopupToLevel", - "location": "internal", + "location": "imgui_internal:1867", "namespace": "ImGui", "ov_cimguiname": "igClosePopupToLevel", "ret": "void", @@ -11470,7 +11488,7 @@ "cimguiname": "igClosePopupsOverWindow", "defaults": [], "funcname": "ClosePopupsOverWindow", - "location": "internal", + "location": "imgui_internal:1868", "namespace": "ImGui", "ov_cimguiname": "igClosePopupsOverWindow", "ret": "void", @@ -11496,7 +11514,7 @@ "cimguiname": "igCollapseButton", "defaults": [], "funcname": "CollapseButton", - "location": "internal", + "location": "imgui_internal:1969", "namespace": "ImGui", "ov_cimguiname": "igCollapseButton", "ret": "bool", @@ -11524,7 +11542,7 @@ "flags": "0" }, "funcname": "CollapsingHeader", - "location": "imgui", + "location": "imgui:551", "namespace": "ImGui", "ov_cimguiname": "igCollapsingHeaderTreeNodeFlags", "ret": "bool", @@ -11554,7 +11572,7 @@ "flags": "0" }, "funcname": "CollapsingHeader", - "location": "imgui", + "location": "imgui:552", "namespace": "ImGui", "ov_cimguiname": "igCollapsingHeaderBoolPtr", "ret": "bool", @@ -11591,7 +11609,7 @@ "size": "ImVec2(0,0)" }, "funcname": "ColorButton", - "location": "imgui", + "location": "imgui:532", "namespace": "ImGui", "ov_cimguiname": "igColorButton", "ret": "bool", @@ -11613,7 +11631,7 @@ "cimguiname": "igColorConvertFloat4ToU32", "defaults": [], "funcname": "ColorConvertFloat4ToU32", - "location": "imgui", + "location": "imgui:730", "namespace": "ImGui", "ov_cimguiname": "igColorConvertFloat4ToU32", "ret": "ImU32", @@ -11658,7 +11676,7 @@ "cimguiname": "igColorConvertHSVtoRGB", "defaults": [], "funcname": "ColorConvertHSVtoRGB", - "location": "imgui", + "location": "imgui:732", "namespace": "ImGui", "ov_cimguiname": "igColorConvertHSVtoRGB", "ret": "void", @@ -11703,7 +11721,7 @@ "cimguiname": "igColorConvertRGBtoHSV", "defaults": [], "funcname": "ColorConvertRGBtoHSV", - "location": "imgui", + "location": "imgui:731", "namespace": "ImGui", "ov_cimguiname": "igColorConvertRGBtoHSV", "ret": "void", @@ -11729,7 +11747,7 @@ "cimguiname": "igColorConvertU32ToFloat4", "defaults": [], "funcname": "ColorConvertU32ToFloat4", - "location": "imgui", + "location": "imgui:729", "namespace": "ImGui", "nonUDT": 1, "ov_cimguiname": "igColorConvertU32ToFloat4", @@ -11762,7 +11780,7 @@ "flags": "0" }, "funcname": "ColorEdit3", - "location": "imgui", + "location": "imgui:528", "namespace": "ImGui", "ov_cimguiname": "igColorEdit3", "ret": "bool", @@ -11794,7 +11812,7 @@ "flags": "0" }, "funcname": "ColorEdit4", - "location": "imgui", + "location": "imgui:529", "namespace": "ImGui", "ov_cimguiname": "igColorEdit4", "ret": "bool", @@ -11820,7 +11838,7 @@ "cimguiname": "igColorEditOptionsPopup", "defaults": [], "funcname": "ColorEditOptionsPopup", - "location": "internal", + "location": "imgui_internal:2013", "namespace": "ImGui", "ov_cimguiname": "igColorEditOptionsPopup", "ret": "void", @@ -11852,7 +11870,7 @@ "flags": "0" }, "funcname": "ColorPicker3", - "location": "imgui", + "location": "imgui:530", "namespace": "ImGui", "ov_cimguiname": "igColorPicker3", "ret": "bool", @@ -11886,10 +11904,10 @@ "cimguiname": "igColorPicker4", "defaults": { "flags": "0", - "ref_col": "((void*)0)" + "ref_col": "NULL" }, "funcname": "ColorPicker4", - "location": "imgui", + "location": "imgui:531", "namespace": "ImGui", "ov_cimguiname": "igColorPicker4", "ret": "bool", @@ -11915,7 +11933,7 @@ "cimguiname": "igColorPickerOptionsPopup", "defaults": [], "funcname": "ColorPickerOptionsPopup", - "location": "internal", + "location": "imgui_internal:2014", "namespace": "ImGui", "ov_cimguiname": "igColorPickerOptionsPopup", "ret": "void", @@ -11945,7 +11963,7 @@ "cimguiname": "igColorTooltip", "defaults": [], "funcname": "ColorTooltip", - "location": "internal", + "location": "imgui_internal:2012", "namespace": "ImGui", "ov_cimguiname": "igColorTooltip", "ret": "void", @@ -11976,10 +11994,10 @@ "defaults": { "border": "true", "count": "1", - "id": "((void*)0)" + "id": "NULL" }, "funcname": "Columns", - "location": "imgui", + "location": "imgui:644", "namespace": "ImGui", "ov_cimguiname": "igColumns", "ret": "void", @@ -12019,7 +12037,7 @@ "popup_max_height_in_items": "-1" }, "funcname": "Combo", - "location": "imgui", + "location": "imgui:458", "namespace": "ImGui", "ov_cimguiname": "igComboStr_arr", "ret": "bool", @@ -12053,7 +12071,7 @@ "popup_max_height_in_items": "-1" }, "funcname": "Combo", - "location": "imgui", + "location": "imgui:459", "namespace": "ImGui", "ov_cimguiname": "igComboStr", "ret": "bool", @@ -12097,7 +12115,7 @@ "popup_max_height_in_items": "-1" }, "funcname": "Combo", - "location": "imgui", + "location": "imgui:460", "namespace": "ImGui", "ov_cimguiname": "igComboFnBoolPtr", "ret": "bool", @@ -12118,10 +12136,10 @@ "call_args": "(shared_font_atlas)", "cimguiname": "igCreateContext", "defaults": { - "shared_font_atlas": "((void*)0)" + "shared_font_atlas": "NULL" }, "funcname": "CreateContext", - "location": "imgui", + "location": "imgui:244", "namespace": "ImGui", "ov_cimguiname": "igCreateContext", "ret": "ImGuiContext*", @@ -12143,7 +12161,7 @@ "cimguiname": "igCreateNewWindowSettings", "defaults": [], "funcname": "CreateNewWindowSettings", - "location": "internal", + "location": "imgui_internal:1815", "namespace": "ImGui", "ov_cimguiname": "igCreateNewWindowSettings", "ret": "ImGuiWindowSettings*", @@ -12181,7 +12199,7 @@ "cimguiname": "igDataTypeApplyOp", "defaults": [], "funcname": "DataTypeApplyOp", - "location": "internal", + "location": "imgui_internal:2000", "namespace": "ImGui", "ov_cimguiname": "igDataTypeApplyOp", "ret": "void", @@ -12219,7 +12237,7 @@ "cimguiname": "igDataTypeApplyOpFromText", "defaults": [], "funcname": "DataTypeApplyOpFromText", - "location": "internal", + "location": "imgui_internal:2001", "namespace": "ImGui", "ov_cimguiname": "igDataTypeApplyOpFromText", "ret": "bool", @@ -12253,7 +12271,7 @@ "cimguiname": "igDataTypeClamp", "defaults": [], "funcname": "DataTypeClamp", - "location": "internal", + "location": "imgui_internal:2002", "namespace": "ImGui", "ov_cimguiname": "igDataTypeClamp", "ret": "bool", @@ -12291,7 +12309,7 @@ "cimguiname": "igDataTypeFormatString", "defaults": [], "funcname": "DataTypeFormatString", - "location": "internal", + "location": "imgui_internal:1999", "namespace": "ImGui", "ov_cimguiname": "igDataTypeFormatString", "ret": "int", @@ -12313,7 +12331,7 @@ "cimguiname": "igDataTypeGetInfo", "defaults": [], "funcname": "DataTypeGetInfo", - "location": "internal", + "location": "imgui_internal:1998", "namespace": "ImGui", "ov_cimguiname": "igDataTypeGetInfo", "ret": "const ImGuiDataTypeInfo*", @@ -12359,7 +12377,7 @@ "cimguiname": "igDebugCheckVersionAndDataLayout", "defaults": [], "funcname": "DebugCheckVersionAndDataLayout", - "location": "imgui", + "location": "imgui:778", "namespace": "ImGui", "ov_cimguiname": "igDebugCheckVersionAndDataLayout", "ret": "bool", @@ -12380,10 +12398,10 @@ "call_args": "(col)", "cimguiname": "igDebugDrawItemRect", "defaults": { - "col": "(((ImU32)(255)<<24)|((ImU32)(0)<<16)|((ImU32)(0)<<8)|((ImU32)(255)<<0))" + "col": "4278190335" }, "funcname": "DebugDrawItemRect", - "location": "internal", + "location": "imgui_internal:2028", "namespace": "ImGui", "ov_cimguiname": "igDebugDrawItemRect", "ret": "void", @@ -12400,7 +12418,7 @@ "cimguiname": "igDebugStartItemPicker", "defaults": [], "funcname": "DebugStartItemPicker", - "location": "internal", + "location": "imgui_internal:2029", "namespace": "ImGui", "ov_cimguiname": "igDebugStartItemPicker", "ret": "void", @@ -12421,10 +12439,10 @@ "call_args": "(ctx)", "cimguiname": "igDestroyContext", "defaults": { - "ctx": "((void*)0)" + "ctx": "NULL" }, "funcname": "DestroyContext", - "location": "imgui", + "location": "imgui:245", "namespace": "ImGui", "ov_cimguiname": "igDestroyContext", "ret": "void", @@ -12474,7 +12492,7 @@ "cimguiname": "igDragBehavior", "defaults": [], "funcname": "DragBehavior", - "location": "internal", + "location": "imgui_internal:1981", "namespace": "ImGui", "ov_cimguiname": "igDragBehavior", "ret": "bool", @@ -12526,7 +12544,7 @@ "v_speed": "1.0f" }, "funcname": "DragFloat", - "location": "imgui", + "location": "imgui:473", "namespace": "ImGui", "ov_cimguiname": "igDragFloat", "ret": "bool", @@ -12578,7 +12596,7 @@ "v_speed": "1.0f" }, "funcname": "DragFloat2", - "location": "imgui", + "location": "imgui:474", "namespace": "ImGui", "ov_cimguiname": "igDragFloat2", "ret": "bool", @@ -12630,7 +12648,7 @@ "v_speed": "1.0f" }, "funcname": "DragFloat3", - "location": "imgui", + "location": "imgui:475", "namespace": "ImGui", "ov_cimguiname": "igDragFloat3", "ret": "bool", @@ -12682,7 +12700,7 @@ "v_speed": "1.0f" }, "funcname": "DragFloat4", - "location": "imgui", + "location": "imgui:476", "namespace": "ImGui", "ov_cimguiname": "igDragFloat4", "ret": "bool", @@ -12737,13 +12755,13 @@ "defaults": { "flags": "0", "format": "\"%.3f\"", - "format_max": "((void*)0)", + "format_max": "NULL", "v_max": "0.0f", "v_min": "0.0f", "v_speed": "1.0f" }, "funcname": "DragFloatRange2", - "location": "imgui", + "location": "imgui:477", "namespace": "ImGui", "ov_cimguiname": "igDragFloatRange2", "ret": "bool", @@ -12795,7 +12813,7 @@ "v_speed": "1.0f" }, "funcname": "DragInt", - "location": "imgui", + "location": "imgui:478", "namespace": "ImGui", "ov_cimguiname": "igDragInt", "ret": "bool", @@ -12847,7 +12865,7 @@ "v_speed": "1.0f" }, "funcname": "DragInt2", - "location": "imgui", + "location": "imgui:479", "namespace": "ImGui", "ov_cimguiname": "igDragInt2", "ret": "bool", @@ -12899,7 +12917,7 @@ "v_speed": "1.0f" }, "funcname": "DragInt3", - "location": "imgui", + "location": "imgui:480", "namespace": "ImGui", "ov_cimguiname": "igDragInt3", "ret": "bool", @@ -12951,7 +12969,7 @@ "v_speed": "1.0f" }, "funcname": "DragInt4", - "location": "imgui", + "location": "imgui:481", "namespace": "ImGui", "ov_cimguiname": "igDragInt4", "ret": "bool", @@ -13006,13 +13024,13 @@ "defaults": { "flags": "0", "format": "\"%d\"", - "format_max": "((void*)0)", + "format_max": "NULL", "v_max": "0", "v_min": "0", "v_speed": "1.0f" }, "funcname": "DragIntRange2", - "location": "imgui", + "location": "imgui:482", "namespace": "ImGui", "ov_cimguiname": "igDragIntRange2", "ret": "bool", @@ -13062,12 +13080,12 @@ "cimguiname": "igDragScalar", "defaults": { "flags": "0", - "format": "((void*)0)", - "p_max": "((void*)0)", - "p_min": "((void*)0)" + "format": "NULL", + "p_max": "NULL", + "p_min": "NULL" }, "funcname": "DragScalar", - "location": "imgui", + "location": "imgui:483", "namespace": "ImGui", "ov_cimguiname": "igDragScalar", "ret": "bool", @@ -13121,12 +13139,12 @@ "cimguiname": "igDragScalarN", "defaults": { "flags": "0", - "format": "((void*)0)", - "p_max": "((void*)0)", - "p_min": "((void*)0)" + "format": "NULL", + "p_max": "NULL", + "p_min": "NULL" }, "funcname": "DragScalarN", - "location": "imgui", + "location": "imgui:484", "namespace": "ImGui", "ov_cimguiname": "igDragScalarN", "ret": "bool", @@ -13148,7 +13166,7 @@ "cimguiname": "igDummy", "defaults": [], "funcname": "Dummy", - "location": "imgui", + "location": "imgui:386", "namespace": "ImGui", "ov_cimguiname": "igDummy", "ret": "void", @@ -13165,7 +13183,7 @@ "cimguiname": "igEnd", "defaults": [], "funcname": "End", - "location": "imgui", + "location": "imgui:285", "namespace": "ImGui", "ov_cimguiname": "igEnd", "ret": "void", @@ -13182,7 +13200,7 @@ "cimguiname": "igEndChild", "defaults": [], "funcname": "EndChild", - "location": "imgui", + "location": "imgui:294", "namespace": "ImGui", "ov_cimguiname": "igEndChild", "ret": "void", @@ -13199,7 +13217,7 @@ "cimguiname": "igEndChildFrame", "defaults": [], "funcname": "EndChildFrame", - "location": "imgui", + "location": "imgui:723", "namespace": "ImGui", "ov_cimguiname": "igEndChildFrame", "ret": "void", @@ -13216,7 +13234,7 @@ "cimguiname": "igEndColumns", "defaults": [], "funcname": "EndColumns", - "location": "internal", + "location": "imgui_internal:1915", "namespace": "ImGui", "ov_cimguiname": "igEndColumns", "ret": "void", @@ -13233,7 +13251,7 @@ "cimguiname": "igEndCombo", "defaults": [], "funcname": "EndCombo", - "location": "imgui", + "location": "imgui:457", "namespace": "ImGui", "ov_cimguiname": "igEndCombo", "ret": "void", @@ -13250,7 +13268,7 @@ "cimguiname": "igEndDragDropSource", "defaults": [], "funcname": "EndDragDropSource", - "location": "imgui", + "location": "imgui:674", "namespace": "ImGui", "ov_cimguiname": "igEndDragDropSource", "ret": "void", @@ -13267,7 +13285,7 @@ "cimguiname": "igEndDragDropTarget", "defaults": [], "funcname": "EndDragDropTarget", - "location": "imgui", + "location": "imgui:677", "namespace": "ImGui", "ov_cimguiname": "igEndDragDropTarget", "ret": "void", @@ -13284,7 +13302,7 @@ "cimguiname": "igEndFrame", "defaults": [], "funcname": "EndFrame", - "location": "imgui", + "location": "imgui:253", "namespace": "ImGui", "ov_cimguiname": "igEndFrame", "ret": "void", @@ -13301,7 +13319,7 @@ "cimguiname": "igEndGroup", "defaults": [], "funcname": "EndGroup", - "location": "imgui", + "location": "imgui:390", "namespace": "ImGui", "ov_cimguiname": "igEndGroup", "ret": "void", @@ -13318,7 +13336,7 @@ "cimguiname": "igEndMainMenuBar", "defaults": [], "funcname": "EndMainMenuBar", - "location": "imgui", + "location": "imgui:589", "namespace": "ImGui", "ov_cimguiname": "igEndMainMenuBar", "ret": "void", @@ -13335,7 +13353,7 @@ "cimguiname": "igEndMenu", "defaults": [], "funcname": "EndMenu", - "location": "imgui", + "location": "imgui:591", "namespace": "ImGui", "ov_cimguiname": "igEndMenu", "ret": "void", @@ -13352,7 +13370,7 @@ "cimguiname": "igEndMenuBar", "defaults": [], "funcname": "EndMenuBar", - "location": "imgui", + "location": "imgui:587", "namespace": "ImGui", "ov_cimguiname": "igEndMenuBar", "ret": "void", @@ -13369,7 +13387,7 @@ "cimguiname": "igEndPopup", "defaults": [], "funcname": "EndPopup", - "location": "imgui", + "location": "imgui:615", "namespace": "ImGui", "ov_cimguiname": "igEndPopup", "ret": "void", @@ -13386,7 +13404,7 @@ "cimguiname": "igEndTabBar", "defaults": [], "funcname": "EndTabBar", - "location": "imgui", + "location": "imgui:655", "namespace": "ImGui", "ov_cimguiname": "igEndTabBar", "ret": "void", @@ -13403,7 +13421,7 @@ "cimguiname": "igEndTabItem", "defaults": [], "funcname": "EndTabItem", - "location": "imgui", + "location": "imgui:657", "namespace": "ImGui", "ov_cimguiname": "igEndTabItem", "ret": "void", @@ -13420,7 +13438,7 @@ "cimguiname": "igEndTooltip", "defaults": [], "funcname": "EndTooltip", - "location": "imgui", + "location": "imgui:598", "namespace": "ImGui", "ov_cimguiname": "igEndTooltip", "ret": "void", @@ -13446,7 +13464,7 @@ "cimguiname": "igFindBestWindowPosForPopup", "defaults": [], "funcname": "FindBestWindowPosForPopup", - "location": "internal", + "location": "imgui_internal:1873", "namespace": "ImGui", "nonUDT": 1, "ov_cimguiname": "igFindBestWindowPosForPopup", @@ -13495,7 +13513,7 @@ "policy": "ImGuiPopupPositionPolicy_Default" }, "funcname": "FindBestWindowPosForPopupEx", - "location": "internal", + "location": "imgui_internal:1874", "namespace": "ImGui", "nonUDT": 1, "ov_cimguiname": "igFindBestWindowPosForPopupEx", @@ -13522,7 +13540,7 @@ "cimguiname": "igFindOrCreateColumns", "defaults": [], "funcname": "FindOrCreateColumns", - "location": "internal", + "location": "imgui_internal:1920", "namespace": "ImGui", "ov_cimguiname": "igFindOrCreateColumns", "ret": "ImGuiColumns*", @@ -13544,7 +13562,7 @@ "cimguiname": "igFindOrCreateWindowSettings", "defaults": [], "funcname": "FindOrCreateWindowSettings", - "location": "internal", + "location": "imgui_internal:1817", "namespace": "ImGui", "ov_cimguiname": "igFindOrCreateWindowSettings", "ret": "ImGuiWindowSettings*", @@ -13569,10 +13587,10 @@ "call_args": "(text,text_end)", "cimguiname": "igFindRenderedTextEnd", "defaults": { - "text_end": "((void*)0)" + "text_end": "NULL" }, "funcname": "FindRenderedTextEnd", - "location": "internal", + "location": "imgui_internal:1947", "namespace": "ImGui", "ov_cimguiname": "igFindRenderedTextEnd", "ret": "const char*", @@ -13594,7 +13612,7 @@ "cimguiname": "igFindSettingsHandler", "defaults": [], "funcname": "FindSettingsHandler", - "location": "internal", + "location": "imgui_internal:1818", "namespace": "ImGui", "ov_cimguiname": "igFindSettingsHandler", "ret": "ImGuiSettingsHandler*", @@ -13616,7 +13634,7 @@ "cimguiname": "igFindWindowByID", "defaults": [], "funcname": "FindWindowByID", - "location": "internal", + "location": "imgui_internal:1777", "namespace": "ImGui", "ov_cimguiname": "igFindWindowByID", "ret": "ImGuiWindow*", @@ -13638,7 +13656,7 @@ "cimguiname": "igFindWindowByName", "defaults": [], "funcname": "FindWindowByName", - "location": "internal", + "location": "imgui_internal:1778", "namespace": "ImGui", "ov_cimguiname": "igFindWindowByName", "ret": "ImGuiWindow*", @@ -13660,7 +13678,7 @@ "cimguiname": "igFindWindowSettings", "defaults": [], "funcname": "FindWindowSettings", - "location": "internal", + "location": "imgui_internal:1816", "namespace": "ImGui", "ov_cimguiname": "igFindWindowSettings", "ret": "ImGuiWindowSettings*", @@ -13686,7 +13704,7 @@ "cimguiname": "igFocusTopMostWindowUnderOne", "defaults": [], "funcname": "FocusTopMostWindowUnderOne", - "location": "internal", + "location": "imgui_internal:1791", "namespace": "ImGui", "ov_cimguiname": "igFocusTopMostWindowUnderOne", "ret": "void", @@ -13708,7 +13726,7 @@ "cimguiname": "igFocusWindow", "defaults": [], "funcname": "FocusWindow", - "location": "internal", + "location": "imgui_internal:1790", "namespace": "ImGui", "ov_cimguiname": "igFocusWindow", "ret": "void", @@ -13734,7 +13752,7 @@ "cimguiname": "igFocusableItemRegister", "defaults": [], "funcname": "FocusableItemRegister", - "location": "internal", + "location": "imgui_internal:1849", "namespace": "ImGui", "ov_cimguiname": "igFocusableItemRegister", "ret": "bool", @@ -13756,7 +13774,7 @@ "cimguiname": "igFocusableItemUnregister", "defaults": [], "funcname": "FocusableItemUnregister", - "location": "internal", + "location": "imgui_internal:1850", "namespace": "ImGui", "ov_cimguiname": "igFocusableItemUnregister", "ret": "void", @@ -13778,7 +13796,7 @@ "cimguiname": "igGcAwakeTransientWindowBuffers", "defaults": [], "funcname": "GcAwakeTransientWindowBuffers", - "location": "internal", + "location": "imgui_internal:2025", "namespace": "ImGui", "ov_cimguiname": "igGcAwakeTransientWindowBuffers", "ret": "void", @@ -13800,7 +13818,7 @@ "cimguiname": "igGcCompactTransientWindowBuffers", "defaults": [], "funcname": "GcCompactTransientWindowBuffers", - "location": "internal", + "location": "imgui_internal:2024", "namespace": "ImGui", "ov_cimguiname": "igGcCompactTransientWindowBuffers", "ret": "void", @@ -13817,7 +13835,7 @@ "cimguiname": "igGetActiveID", "defaults": [], "funcname": "GetActiveID", - "location": "internal", + "location": "imgui_internal:1831", "namespace": "ImGui", "ov_cimguiname": "igGetActiveID", "ret": "ImGuiID", @@ -13834,7 +13852,7 @@ "cimguiname": "igGetBackgroundDrawList", "defaults": [], "funcname": "GetBackgroundDrawList", - "location": "imgui", + "location": "imgui:715", "namespace": "ImGui", "ov_cimguiname": "igGetBackgroundDrawList", "ret": "ImDrawList*", @@ -13851,7 +13869,7 @@ "cimguiname": "igGetClipboardText", "defaults": [], "funcname": "GetClipboardText", - "location": "imgui", + "location": "imgui:766", "namespace": "ImGui", "ov_cimguiname": "igGetClipboardText", "ret": "const char*", @@ -13879,7 +13897,7 @@ "alpha_mul": "1.0f" }, "funcname": "GetColorU32", - "location": "imgui", + "location": "imgui:359", "namespace": "ImGui", "ov_cimguiname": "igGetColorU32Col", "ret": "ImU32", @@ -13899,7 +13917,7 @@ "cimguiname": "igGetColorU32", "defaults": [], "funcname": "GetColorU32", - "location": "imgui", + "location": "imgui:360", "namespace": "ImGui", "ov_cimguiname": "igGetColorU32Vec4", "ret": "ImU32", @@ -13919,7 +13937,7 @@ "cimguiname": "igGetColorU32", "defaults": [], "funcname": "GetColorU32", - "location": "imgui", + "location": "imgui:361", "namespace": "ImGui", "ov_cimguiname": "igGetColorU32U32", "ret": "ImU32", @@ -13936,7 +13954,7 @@ "cimguiname": "igGetColumnIndex", "defaults": [], "funcname": "GetColumnIndex", - "location": "imgui", + "location": "imgui:646", "namespace": "ImGui", "ov_cimguiname": "igGetColumnIndex", "ret": "int", @@ -13962,7 +13980,7 @@ "cimguiname": "igGetColumnNormFromOffset", "defaults": [], "funcname": "GetColumnNormFromOffset", - "location": "internal", + "location": "imgui_internal:1922", "namespace": "ImGui", "ov_cimguiname": "igGetColumnNormFromOffset", "ret": "float", @@ -13986,7 +14004,7 @@ "column_index": "-1" }, "funcname": "GetColumnOffset", - "location": "imgui", + "location": "imgui:649", "namespace": "ImGui", "ov_cimguiname": "igGetColumnOffset", "ret": "float", @@ -14012,7 +14030,7 @@ "cimguiname": "igGetColumnOffsetFromNorm", "defaults": [], "funcname": "GetColumnOffsetFromNorm", - "location": "internal", + "location": "imgui_internal:1921", "namespace": "ImGui", "ov_cimguiname": "igGetColumnOffsetFromNorm", "ret": "float", @@ -14036,7 +14054,7 @@ "column_index": "-1" }, "funcname": "GetColumnWidth", - "location": "imgui", + "location": "imgui:647", "namespace": "ImGui", "ov_cimguiname": "igGetColumnWidth", "ret": "float", @@ -14053,7 +14071,7 @@ "cimguiname": "igGetColumnsCount", "defaults": [], "funcname": "GetColumnsCount", - "location": "imgui", + "location": "imgui:651", "namespace": "ImGui", "ov_cimguiname": "igGetColumnsCount", "ret": "int", @@ -14079,7 +14097,7 @@ "cimguiname": "igGetColumnsID", "defaults": [], "funcname": "GetColumnsID", - "location": "internal", + "location": "imgui_internal:1919", "namespace": "ImGui", "ov_cimguiname": "igGetColumnsID", "ret": "ImGuiID", @@ -14101,7 +14119,7 @@ "cimguiname": "igGetContentRegionAvail", "defaults": [], "funcname": "GetContentRegionAvail", - "location": "imgui", + "location": "imgui:329", "namespace": "ImGui", "nonUDT": 1, "ov_cimguiname": "igGetContentRegionAvail", @@ -14124,7 +14142,7 @@ "cimguiname": "igGetContentRegionMax", "defaults": [], "funcname": "GetContentRegionMax", - "location": "imgui", + "location": "imgui:328", "namespace": "ImGui", "nonUDT": 1, "ov_cimguiname": "igGetContentRegionMax", @@ -14147,7 +14165,7 @@ "cimguiname": "igGetContentRegionMaxAbs", "defaults": [], "funcname": "GetContentRegionMaxAbs", - "location": "internal", + "location": "imgui_internal:1857", "namespace": "ImGui", "nonUDT": 1, "ov_cimguiname": "igGetContentRegionMaxAbs", @@ -14165,7 +14183,7 @@ "cimguiname": "igGetCurrentContext", "defaults": [], "funcname": "GetCurrentContext", - "location": "imgui", + "location": "imgui:246", "namespace": "ImGui", "ov_cimguiname": "igGetCurrentContext", "ret": "ImGuiContext*", @@ -14182,7 +14200,7 @@ "cimguiname": "igGetCurrentWindow", "defaults": [], "funcname": "GetCurrentWindow", - "location": "internal", + "location": "imgui_internal:1776", "namespace": "ImGui", "ov_cimguiname": "igGetCurrentWindow", "ret": "ImGuiWindow*", @@ -14199,7 +14217,7 @@ "cimguiname": "igGetCurrentWindowRead", "defaults": [], "funcname": "GetCurrentWindowRead", - "location": "internal", + "location": "imgui_internal:1775", "namespace": "ImGui", "ov_cimguiname": "igGetCurrentWindowRead", "ret": "ImGuiWindow*", @@ -14221,7 +14239,7 @@ "cimguiname": "igGetCursorPos", "defaults": [], "funcname": "GetCursorPos", - "location": "imgui", + "location": "imgui:391", "namespace": "ImGui", "nonUDT": 1, "ov_cimguiname": "igGetCursorPos", @@ -14239,7 +14257,7 @@ "cimguiname": "igGetCursorPosX", "defaults": [], "funcname": "GetCursorPosX", - "location": "imgui", + "location": "imgui:392", "namespace": "ImGui", "ov_cimguiname": "igGetCursorPosX", "ret": "float", @@ -14256,7 +14274,7 @@ "cimguiname": "igGetCursorPosY", "defaults": [], "funcname": "GetCursorPosY", - "location": "imgui", + "location": "imgui:393", "namespace": "ImGui", "ov_cimguiname": "igGetCursorPosY", "ret": "float", @@ -14278,7 +14296,7 @@ "cimguiname": "igGetCursorScreenPos", "defaults": [], "funcname": "GetCursorScreenPos", - "location": "imgui", + "location": "imgui:398", "namespace": "ImGui", "nonUDT": 1, "ov_cimguiname": "igGetCursorScreenPos", @@ -14301,7 +14319,7 @@ "cimguiname": "igGetCursorStartPos", "defaults": [], "funcname": "GetCursorStartPos", - "location": "imgui", + "location": "imgui:397", "namespace": "ImGui", "nonUDT": 1, "ov_cimguiname": "igGetCursorStartPos", @@ -14319,7 +14337,7 @@ "cimguiname": "igGetDefaultFont", "defaults": [], "funcname": "GetDefaultFont", - "location": "internal", + "location": "imgui_internal:1798", "namespace": "ImGui", "ov_cimguiname": "igGetDefaultFont", "ret": "ImFont*", @@ -14336,7 +14354,7 @@ "cimguiname": "igGetDragDropPayload", "defaults": [], "funcname": "GetDragDropPayload", - "location": "imgui", + "location": "imgui:678", "namespace": "ImGui", "ov_cimguiname": "igGetDragDropPayload", "ret": "const ImGuiPayload*", @@ -14353,7 +14371,7 @@ "cimguiname": "igGetDrawData", "defaults": [], "funcname": "GetDrawData", - "location": "imgui", + "location": "imgui:255", "namespace": "ImGui", "ov_cimguiname": "igGetDrawData", "ret": "ImDrawData*", @@ -14370,7 +14388,7 @@ "cimguiname": "igGetDrawListSharedData", "defaults": [], "funcname": "GetDrawListSharedData", - "location": "imgui", + "location": "imgui:717", "namespace": "ImGui", "ov_cimguiname": "igGetDrawListSharedData", "ret": "ImDrawListSharedData*", @@ -14387,7 +14405,7 @@ "cimguiname": "igGetFocusID", "defaults": [], "funcname": "GetFocusID", - "location": "internal", + "location": "imgui_internal:1832", "namespace": "ImGui", "ov_cimguiname": "igGetFocusID", "ret": "ImGuiID", @@ -14404,7 +14422,7 @@ "cimguiname": "igGetFocusScopeID", "defaults": [], "funcname": "GetFocusScopeID", - "location": "internal", + "location": "imgui_internal:1894", "namespace": "ImGui", "ov_cimguiname": "igGetFocusScopeID", "ret": "ImGuiID", @@ -14421,7 +14439,7 @@ "cimguiname": "igGetFont", "defaults": [], "funcname": "GetFont", - "location": "imgui", + "location": "imgui:356", "namespace": "ImGui", "ov_cimguiname": "igGetFont", "ret": "ImFont*", @@ -14438,7 +14456,7 @@ "cimguiname": "igGetFontSize", "defaults": [], "funcname": "GetFontSize", - "location": "imgui", + "location": "imgui:357", "namespace": "ImGui", "ov_cimguiname": "igGetFontSize", "ret": "float", @@ -14460,7 +14478,7 @@ "cimguiname": "igGetFontTexUvWhitePixel", "defaults": [], "funcname": "GetFontTexUvWhitePixel", - "location": "imgui", + "location": "imgui:358", "namespace": "ImGui", "nonUDT": 1, "ov_cimguiname": "igGetFontTexUvWhitePixel", @@ -14478,7 +14496,7 @@ "cimguiname": "igGetForegroundDrawList", "defaults": [], "funcname": "GetForegroundDrawList", - "location": "imgui", + "location": "imgui:716", "namespace": "ImGui", "ov_cimguiname": "igGetForegroundDrawListNil", "ret": "ImDrawList*", @@ -14498,7 +14516,7 @@ "cimguiname": "igGetForegroundDrawList", "defaults": [], "funcname": "GetForegroundDrawList", - "location": "internal", + "location": "imgui_internal:1799", "namespace": "ImGui", "ov_cimguiname": "igGetForegroundDrawListWindowPtr", "ret": "ImDrawList*", @@ -14515,7 +14533,7 @@ "cimguiname": "igGetFrameCount", "defaults": [], "funcname": "GetFrameCount", - "location": "imgui", + "location": "imgui:714", "namespace": "ImGui", "ov_cimguiname": "igGetFrameCount", "ret": "int", @@ -14532,7 +14550,7 @@ "cimguiname": "igGetFrameHeight", "defaults": [], "funcname": "GetFrameHeight", - "location": "imgui", + "location": "imgui:403", "namespace": "ImGui", "ov_cimguiname": "igGetFrameHeight", "ret": "float", @@ -14549,7 +14567,7 @@ "cimguiname": "igGetFrameHeightWithSpacing", "defaults": [], "funcname": "GetFrameHeightWithSpacing", - "location": "imgui", + "location": "imgui:404", "namespace": "ImGui", "ov_cimguiname": "igGetFrameHeightWithSpacing", "ret": "float", @@ -14566,7 +14584,7 @@ "cimguiname": "igGetHoveredID", "defaults": [], "funcname": "GetHoveredID", - "location": "internal", + "location": "imgui_internal:1836", "namespace": "ImGui", "ov_cimguiname": "igGetHoveredID", "ret": "ImGuiID", @@ -14588,7 +14606,7 @@ "cimguiname": "igGetID", "defaults": [], "funcname": "GetID", - "location": "imgui", + "location": "imgui:418", "namespace": "ImGui", "ov_cimguiname": "igGetIDStr", "ret": "ImGuiID", @@ -14612,7 +14630,7 @@ "cimguiname": "igGetID", "defaults": [], "funcname": "GetID", - "location": "imgui", + "location": "imgui:419", "namespace": "ImGui", "ov_cimguiname": "igGetIDStrStr", "ret": "ImGuiID", @@ -14632,7 +14650,7 @@ "cimguiname": "igGetID", "defaults": [], "funcname": "GetID", - "location": "imgui", + "location": "imgui:420", "namespace": "ImGui", "ov_cimguiname": "igGetIDPtr", "ret": "ImGuiID", @@ -14649,7 +14667,7 @@ "cimguiname": "igGetIO", "defaults": [], "funcname": "GetIO", - "location": "imgui", + "location": "imgui:250", "namespace": "ImGui", "ov_cimguiname": "igGetIO", "ret": "ImGuiIO*", @@ -14672,7 +14690,7 @@ "cimguiname": "igGetInputTextState", "defaults": [], "funcname": "GetInputTextState", - "location": "internal", + "location": "imgui_internal:2009", "namespace": "ImGui", "ov_cimguiname": "igGetInputTextState", "ret": "ImGuiInputTextState*", @@ -14689,7 +14707,7 @@ "cimguiname": "igGetItemID", "defaults": [], "funcname": "GetItemID", - "location": "internal", + "location": "imgui_internal:1829", "namespace": "ImGui", "ov_cimguiname": "igGetItemID", "ret": "ImGuiID", @@ -14711,7 +14729,7 @@ "cimguiname": "igGetItemRectMax", "defaults": [], "funcname": "GetItemRectMax", - "location": "imgui", + "location": "imgui:706", "namespace": "ImGui", "nonUDT": 1, "ov_cimguiname": "igGetItemRectMax", @@ -14734,7 +14752,7 @@ "cimguiname": "igGetItemRectMin", "defaults": [], "funcname": "GetItemRectMin", - "location": "imgui", + "location": "imgui:705", "namespace": "ImGui", "nonUDT": 1, "ov_cimguiname": "igGetItemRectMin", @@ -14757,7 +14775,7 @@ "cimguiname": "igGetItemRectSize", "defaults": [], "funcname": "GetItemRectSize", - "location": "imgui", + "location": "imgui:707", "namespace": "ImGui", "nonUDT": 1, "ov_cimguiname": "igGetItemRectSize", @@ -14775,7 +14793,7 @@ "cimguiname": "igGetItemStatusFlags", "defaults": [], "funcname": "GetItemStatusFlags", - "location": "internal", + "location": "imgui_internal:1830", "namespace": "ImGui", "ov_cimguiname": "igGetItemStatusFlags", "ret": "ImGuiItemStatusFlags", @@ -14797,7 +14815,7 @@ "cimguiname": "igGetKeyIndex", "defaults": [], "funcname": "GetKeyIndex", - "location": "imgui", + "location": "imgui:737", "namespace": "ImGui", "ov_cimguiname": "igGetKeyIndex", "ret": "int", @@ -14827,7 +14845,7 @@ "cimguiname": "igGetKeyPressedAmount", "defaults": [], "funcname": "GetKeyPressedAmount", - "location": "imgui", + "location": "imgui:741", "namespace": "ImGui", "ov_cimguiname": "igGetKeyPressedAmount", "ret": "int", @@ -14844,7 +14862,7 @@ "cimguiname": "igGetMergedKeyModFlags", "defaults": [], "funcname": "GetMergedKeyModFlags", - "location": "internal", + "location": "imgui_internal:1905", "namespace": "ImGui", "ov_cimguiname": "igGetMergedKeyModFlags", "ret": "ImGuiKeyModFlags", @@ -14861,7 +14879,7 @@ "cimguiname": "igGetMouseCursor", "defaults": [], "funcname": "GetMouseCursor", - "location": "imgui", + "location": "imgui:760", "namespace": "ImGui", "ov_cimguiname": "igGetMouseCursor", "ret": "ImGuiMouseCursor", @@ -14894,7 +14912,7 @@ "lock_threshold": "-1.0f" }, "funcname": "GetMouseDragDelta", - "location": "imgui", + "location": "imgui:758", "namespace": "ImGui", "nonUDT": 1, "ov_cimguiname": "igGetMouseDragDelta", @@ -14917,7 +14935,7 @@ "cimguiname": "igGetMousePos", "defaults": [], "funcname": "GetMousePos", - "location": "imgui", + "location": "imgui:755", "namespace": "ImGui", "nonUDT": 1, "ov_cimguiname": "igGetMousePos", @@ -14940,7 +14958,7 @@ "cimguiname": "igGetMousePosOnOpeningCurrentPopup", "defaults": [], "funcname": "GetMousePosOnOpeningCurrentPopup", - "location": "imgui", + "location": "imgui:756", "namespace": "ImGui", "nonUDT": 1, "ov_cimguiname": "igGetMousePosOnOpeningCurrentPopup", @@ -14967,7 +14985,7 @@ "cimguiname": "igGetNavInputAmount", "defaults": [], "funcname": "GetNavInputAmount", - "location": "internal", + "location": "imgui_internal:1882", "namespace": "ImGui", "ov_cimguiname": "igGetNavInputAmount", "ret": "float", @@ -15008,7 +15026,7 @@ "slow_factor": "0.0f" }, "funcname": "GetNavInputAmount2d", - "location": "internal", + "location": "imgui_internal:1883", "namespace": "ImGui", "nonUDT": 1, "ov_cimguiname": "igGetNavInputAmount2d", @@ -15026,7 +15044,7 @@ "cimguiname": "igGetScrollMaxX", "defaults": [], "funcname": "GetScrollMaxX", - "location": "imgui", + "location": "imgui:337", "namespace": "ImGui", "ov_cimguiname": "igGetScrollMaxX", "ret": "float", @@ -15043,7 +15061,7 @@ "cimguiname": "igGetScrollMaxY", "defaults": [], "funcname": "GetScrollMaxY", - "location": "imgui", + "location": "imgui:338", "namespace": "ImGui", "ov_cimguiname": "igGetScrollMaxY", "ret": "float", @@ -15060,7 +15078,7 @@ "cimguiname": "igGetScrollX", "defaults": [], "funcname": "GetScrollX", - "location": "imgui", + "location": "imgui:335", "namespace": "ImGui", "ov_cimguiname": "igGetScrollX", "ret": "float", @@ -15077,7 +15095,7 @@ "cimguiname": "igGetScrollY", "defaults": [], "funcname": "GetScrollY", - "location": "imgui", + "location": "imgui:336", "namespace": "ImGui", "ov_cimguiname": "igGetScrollY", "ret": "float", @@ -15094,7 +15112,7 @@ "cimguiname": "igGetStateStorage", "defaults": [], "funcname": "GetStateStorage", - "location": "imgui", + "location": "imgui:720", "namespace": "ImGui", "ov_cimguiname": "igGetStateStorage", "ret": "ImGuiStorage*", @@ -15111,7 +15129,7 @@ "cimguiname": "igGetStyle", "defaults": [], "funcname": "GetStyle", - "location": "imgui", + "location": "imgui:251", "namespace": "ImGui", "ov_cimguiname": "igGetStyle", "ret": "ImGuiStyle*", @@ -15134,7 +15152,7 @@ "cimguiname": "igGetStyleColorName", "defaults": [], "funcname": "GetStyleColorName", - "location": "imgui", + "location": "imgui:718", "namespace": "ImGui", "ov_cimguiname": "igGetStyleColorName", "ret": "const char*", @@ -15156,7 +15174,7 @@ "cimguiname": "igGetStyleColorVec4", "defaults": [], "funcname": "GetStyleColorVec4", - "location": "imgui", + "location": "imgui:355", "namespace": "ImGui", "ov_cimguiname": "igGetStyleColorVec4", "ret": "const ImVec4*", @@ -15174,7 +15192,7 @@ "cimguiname": "igGetTextLineHeight", "defaults": [], "funcname": "GetTextLineHeight", - "location": "imgui", + "location": "imgui:401", "namespace": "ImGui", "ov_cimguiname": "igGetTextLineHeight", "ret": "float", @@ -15191,7 +15209,7 @@ "cimguiname": "igGetTextLineHeightWithSpacing", "defaults": [], "funcname": "GetTextLineHeightWithSpacing", - "location": "imgui", + "location": "imgui:402", "namespace": "ImGui", "ov_cimguiname": "igGetTextLineHeightWithSpacing", "ret": "float", @@ -15208,7 +15226,7 @@ "cimguiname": "igGetTime", "defaults": [], "funcname": "GetTime", - "location": "imgui", + "location": "imgui:713", "namespace": "ImGui", "ov_cimguiname": "igGetTime", "ret": "double", @@ -15225,7 +15243,7 @@ "cimguiname": "igGetTopMostPopupModal", "defaults": [], "funcname": "GetTopMostPopupModal", - "location": "internal", + "location": "imgui_internal:1872", "namespace": "ImGui", "ov_cimguiname": "igGetTopMostPopupModal", "ret": "ImGuiWindow*", @@ -15242,7 +15260,7 @@ "cimguiname": "igGetTreeNodeToLabelSpacing", "defaults": [], "funcname": "GetTreeNodeToLabelSpacing", - "location": "imgui", + "location": "imgui:550", "namespace": "ImGui", "ov_cimguiname": "igGetTreeNodeToLabelSpacing", "ret": "float", @@ -15259,7 +15277,7 @@ "cimguiname": "igGetVersion", "defaults": [], "funcname": "GetVersion", - "location": "imgui", + "location": "imgui:265", "namespace": "ImGui", "ov_cimguiname": "igGetVersion", "ret": "const char*", @@ -15285,7 +15303,7 @@ "cimguiname": "igGetWindowAllowedExtentRect", "defaults": [], "funcname": "GetWindowAllowedExtentRect", - "location": "internal", + "location": "imgui_internal:1783", "namespace": "ImGui", "nonUDT": 1, "ov_cimguiname": "igGetWindowAllowedExtentRect", @@ -15308,7 +15326,7 @@ "cimguiname": "igGetWindowContentRegionMax", "defaults": [], "funcname": "GetWindowContentRegionMax", - "location": "imgui", + "location": "imgui:331", "namespace": "ImGui", "nonUDT": 1, "ov_cimguiname": "igGetWindowContentRegionMax", @@ -15331,7 +15349,7 @@ "cimguiname": "igGetWindowContentRegionMin", "defaults": [], "funcname": "GetWindowContentRegionMin", - "location": "imgui", + "location": "imgui:330", "namespace": "ImGui", "nonUDT": 1, "ov_cimguiname": "igGetWindowContentRegionMin", @@ -15349,7 +15367,7 @@ "cimguiname": "igGetWindowContentRegionWidth", "defaults": [], "funcname": "GetWindowContentRegionWidth", - "location": "imgui", + "location": "imgui:332", "namespace": "ImGui", "ov_cimguiname": "igGetWindowContentRegionWidth", "ret": "float", @@ -15366,7 +15384,7 @@ "cimguiname": "igGetWindowDrawList", "defaults": [], "funcname": "GetWindowDrawList", - "location": "imgui", + "location": "imgui:302", "namespace": "ImGui", "ov_cimguiname": "igGetWindowDrawList", "ret": "ImDrawList*", @@ -15383,7 +15401,7 @@ "cimguiname": "igGetWindowHeight", "defaults": [], "funcname": "GetWindowHeight", - "location": "imgui", + "location": "imgui:306", "namespace": "ImGui", "ov_cimguiname": "igGetWindowHeight", "ret": "float", @@ -15405,7 +15423,7 @@ "cimguiname": "igGetWindowPos", "defaults": [], "funcname": "GetWindowPos", - "location": "imgui", + "location": "imgui:303", "namespace": "ImGui", "nonUDT": 1, "ov_cimguiname": "igGetWindowPos", @@ -15432,7 +15450,7 @@ "cimguiname": "igGetWindowResizeID", "defaults": [], "funcname": "GetWindowResizeID", - "location": "internal", + "location": "imgui_internal:1976", "namespace": "ImGui", "ov_cimguiname": "igGetWindowResizeID", "ret": "ImGuiID", @@ -15458,7 +15476,7 @@ "cimguiname": "igGetWindowScrollbarID", "defaults": [], "funcname": "GetWindowScrollbarID", - "location": "internal", + "location": "imgui_internal:1975", "namespace": "ImGui", "ov_cimguiname": "igGetWindowScrollbarID", "ret": "ImGuiID", @@ -15488,7 +15506,7 @@ "cimguiname": "igGetWindowScrollbarRect", "defaults": [], "funcname": "GetWindowScrollbarRect", - "location": "internal", + "location": "imgui_internal:1974", "namespace": "ImGui", "nonUDT": 1, "ov_cimguiname": "igGetWindowScrollbarRect", @@ -15511,7 +15529,7 @@ "cimguiname": "igGetWindowSize", "defaults": [], "funcname": "GetWindowSize", - "location": "imgui", + "location": "imgui:304", "namespace": "ImGui", "nonUDT": 1, "ov_cimguiname": "igGetWindowSize", @@ -15529,7 +15547,7 @@ "cimguiname": "igGetWindowWidth", "defaults": [], "funcname": "GetWindowWidth", - "location": "imgui", + "location": "imgui:305", "namespace": "ImGui", "ov_cimguiname": "igGetWindowWidth", "ret": "float", @@ -15551,7 +15569,7 @@ "cimguiname": "igImAbs", "defaults": [], "funcname": "ImAbs", - "location": "internal", + "location": "imgui_internal:351", "ov_cimguiname": "igImAbsFloat", "ret": "float", "signature": "(float)", @@ -15570,7 +15588,7 @@ "cimguiname": "igImAbs", "defaults": [], "funcname": "ImAbs", - "location": "internal", + "location": "imgui_internal:352", "ov_cimguiname": "igImAbsdouble", "ret": "double", "signature": "(double)", @@ -15595,7 +15613,7 @@ "cimguiname": "igImAlphaBlendColors", "defaults": [], "funcname": "ImAlphaBlendColors", - "location": "internal", + "location": "imgui_internal:255", "ov_cimguiname": "igImAlphaBlendColors", "ret": "ImU32", "signature": "(ImU32,ImU32)", @@ -15636,7 +15654,7 @@ "cimguiname": "igImBezierCalc", "defaults": [], "funcname": "ImBezierCalc", - "location": "internal", + "location": "imgui_internal:385", "nonUDT": 1, "ov_cimguiname": "igImBezierCalc", "ret": "void", @@ -15682,7 +15700,7 @@ "cimguiname": "igImBezierClosestPoint", "defaults": [], "funcname": "ImBezierClosestPoint", - "location": "internal", + "location": "imgui_internal:386", "nonUDT": 1, "ov_cimguiname": "igImBezierClosestPoint", "ret": "void", @@ -15728,7 +15746,7 @@ "cimguiname": "igImBezierClosestPointCasteljau", "defaults": [], "funcname": "ImBezierClosestPointCasteljau", - "location": "internal", + "location": "imgui_internal:387", "nonUDT": 1, "ov_cimguiname": "igImBezierClosestPointCasteljau", "ret": "void", @@ -15754,7 +15772,7 @@ "cimguiname": "igImBitArrayClearBit", "defaults": [], "funcname": "ImBitArrayClearBit", - "location": "internal", + "location": "imgui_internal:452", "ov_cimguiname": "igImBitArrayClearBit", "ret": "void", "signature": "(ImU32*,int)", @@ -15779,7 +15797,7 @@ "cimguiname": "igImBitArraySetBit", "defaults": [], "funcname": "ImBitArraySetBit", - "location": "internal", + "location": "imgui_internal:453", "ov_cimguiname": "igImBitArraySetBit", "ret": "void", "signature": "(ImU32*,int)", @@ -15808,7 +15826,7 @@ "cimguiname": "igImBitArraySetBitRange", "defaults": [], "funcname": "ImBitArraySetBitRange", - "location": "internal", + "location": "imgui_internal:454", "ov_cimguiname": "igImBitArraySetBitRange", "ret": "void", "signature": "(ImU32*,int,int)", @@ -15833,7 +15851,7 @@ "cimguiname": "igImBitArrayTestBit", "defaults": [], "funcname": "ImBitArrayTestBit", - "location": "internal", + "location": "imgui_internal:451", "ov_cimguiname": "igImBitArrayTestBit", "ret": "bool", "signature": "(const ImU32*,int)", @@ -15854,7 +15872,7 @@ "cimguiname": "igImCharIsBlankA", "defaults": [], "funcname": "ImCharIsBlankA", - "location": "internal", + "location": "imgui_internal:280", "ov_cimguiname": "igImCharIsBlankA", "ret": "bool", "signature": "(char)", @@ -15875,7 +15893,7 @@ "cimguiname": "igImCharIsBlankW", "defaults": [], "funcname": "ImCharIsBlankW", - "location": "internal", + "location": "imgui_internal:281", "ov_cimguiname": "igImCharIsBlankW", "ret": "bool", "signature": "(unsigned int)", @@ -15908,7 +15926,7 @@ "cimguiname": "igImClamp", "defaults": [], "funcname": "ImClamp", - "location": "internal", + "location": "imgui_internal:368", "nonUDT": 1, "ov_cimguiname": "igImClamp", "ret": "void", @@ -15934,7 +15952,7 @@ "cimguiname": "igImDot", "defaults": [], "funcname": "ImDot", - "location": "internal", + "location": "imgui_internal:379", "ov_cimguiname": "igImDot", "ret": "float", "signature": "(const ImVec2,const ImVec2)", @@ -15955,7 +15973,7 @@ "cimguiname": "igImFileClose", "defaults": [], "funcname": "ImFileClose", - "location": "internal", + "location": "imgui_internal:325", "ov_cimguiname": "igImFileClose", "ret": "bool", "signature": "(ImFileHandle)", @@ -15976,7 +15994,7 @@ "cimguiname": "igImFileGetSize", "defaults": [], "funcname": "ImFileGetSize", - "location": "internal", + "location": "imgui_internal:326", "ov_cimguiname": "igImFileGetSize", "ret": "ImU64", "signature": "(ImFileHandle)", @@ -16008,11 +16026,11 @@ "call_args": "(filename,mode,out_file_size,padding_bytes)", "cimguiname": "igImFileLoadToMemory", "defaults": { - "out_file_size": "((void*)0)", + "out_file_size": "NULL", "padding_bytes": "0" }, "funcname": "ImFileLoadToMemory", - "location": "internal", + "location": "imgui_internal:332", "ov_cimguiname": "igImFileLoadToMemory", "ret": "void*", "signature": "(const char*,const char*,size_t*,int)", @@ -16037,7 +16055,7 @@ "cimguiname": "igImFileOpen", "defaults": [], "funcname": "ImFileOpen", - "location": "internal", + "location": "imgui_internal:324", "ov_cimguiname": "igImFileOpen", "ret": "ImFileHandle", "signature": "(const char*,const char*)", @@ -16070,7 +16088,7 @@ "cimguiname": "igImFileRead", "defaults": [], "funcname": "ImFileRead", - "location": "internal", + "location": "imgui_internal:327", "ov_cimguiname": "igImFileRead", "ret": "ImU64", "signature": "(void*,ImU64,ImU64,ImFileHandle)", @@ -16103,7 +16121,7 @@ "cimguiname": "igImFileWrite", "defaults": [], "funcname": "ImFileWrite", - "location": "internal", + "location": "imgui_internal:328", "ov_cimguiname": "igImFileWrite", "ret": "ImU64", "signature": "(const void*,ImU64,ImU64,ImFileHandle)", @@ -16124,7 +16142,7 @@ "cimguiname": "igImFloor", "defaults": [], "funcname": "ImFloor", - "location": "internal", + "location": "imgui_internal:376", "ov_cimguiname": "igImFloorFloat", "ret": "float", "signature": "(float)", @@ -16147,7 +16165,7 @@ "cimguiname": "igImFloor", "defaults": [], "funcname": "ImFloor", - "location": "internal", + "location": "imgui_internal:377", "nonUDT": 1, "ov_cimguiname": "igImFloorVec2", "ret": "void", @@ -16169,7 +16187,7 @@ "cimguiname": "igImFontAtlasBuildFinish", "defaults": [], "funcname": "ImFontAtlasBuildFinish", - "location": "internal", + "location": "imgui_internal:2038", "ov_cimguiname": "igImFontAtlasBuildFinish", "ret": "void", "signature": "(ImFontAtlas*)", @@ -16190,7 +16208,7 @@ "cimguiname": "igImFontAtlasBuildInit", "defaults": [], "funcname": "ImFontAtlasBuildInit", - "location": "internal", + "location": "imgui_internal:2035", "ov_cimguiname": "igImFontAtlasBuildInit", "ret": "void", "signature": "(ImFontAtlas*)", @@ -16215,7 +16233,7 @@ "cimguiname": "igImFontAtlasBuildMultiplyCalcLookupTable", "defaults": [], "funcname": "ImFontAtlasBuildMultiplyCalcLookupTable", - "location": "internal", + "location": "imgui_internal:2040", "ov_cimguiname": "igImFontAtlasBuildMultiplyCalcLookupTable", "ret": "void", "signature": "(unsigned char[256],float)", @@ -16260,7 +16278,7 @@ "cimguiname": "igImFontAtlasBuildMultiplyRectAlpha8", "defaults": [], "funcname": "ImFontAtlasBuildMultiplyRectAlpha8", - "location": "internal", + "location": "imgui_internal:2041", "ov_cimguiname": "igImFontAtlasBuildMultiplyRectAlpha8", "ret": "void", "signature": "(const unsigned char[256],unsigned char*,int,int,int,int,int)", @@ -16285,7 +16303,7 @@ "cimguiname": "igImFontAtlasBuildPackCustomRects", "defaults": [], "funcname": "ImFontAtlasBuildPackCustomRects", - "location": "internal", + "location": "imgui_internal:2037", "ov_cimguiname": "igImFontAtlasBuildPackCustomRects", "ret": "void", "signature": "(ImFontAtlas*,void*)", @@ -16334,7 +16352,7 @@ "cimguiname": "igImFontAtlasBuildRender1bppRectFromString", "defaults": [], "funcname": "ImFontAtlasBuildRender1bppRectFromString", - "location": "internal", + "location": "imgui_internal:2039", "ov_cimguiname": "igImFontAtlasBuildRender1bppRectFromString", "ret": "void", "signature": "(ImFontAtlas*,int,int,int,int,const char*,char,unsigned char)", @@ -16371,7 +16389,7 @@ "cimguiname": "igImFontAtlasBuildSetupFont", "defaults": [], "funcname": "ImFontAtlasBuildSetupFont", - "location": "internal", + "location": "imgui_internal:2036", "ov_cimguiname": "igImFontAtlasBuildSetupFont", "ret": "void", "signature": "(ImFontAtlas*,ImFont*,ImFontConfig*,float,float)", @@ -16392,7 +16410,7 @@ "cimguiname": "igImFontAtlasBuildWithStbTruetype", "defaults": [], "funcname": "ImFontAtlasBuildWithStbTruetype", - "location": "internal", + "location": "imgui_internal:2034", "ov_cimguiname": "igImFontAtlasBuildWithStbTruetype", "ret": "bool", "signature": "(ImFontAtlas*)", @@ -16426,7 +16444,7 @@ "defaults": [], "funcname": "ImFormatString", "isvararg": "...)", - "location": "internal", + "location": "imgui_internal:274", "ov_cimguiname": "igImFormatString", "ret": "int", "signature": "(char*,size_t,const char*,...)", @@ -16459,7 +16477,7 @@ "cimguiname": "igImFormatStringV", "defaults": [], "funcname": "ImFormatStringV", - "location": "internal", + "location": "imgui_internal:275", "ov_cimguiname": "igImFormatStringV", "ret": "int", "signature": "(char*,size_t,const char*,va_list)", @@ -16484,7 +16502,7 @@ "cimguiname": "igImGetDirQuadrantFromDelta", "defaults": [], "funcname": "ImGetDirQuadrantFromDelta", - "location": "internal", + "location": "imgui_internal:393", "ov_cimguiname": "igImGetDirQuadrantFromDelta", "ret": "ImGuiDir", "signature": "(float,float)", @@ -16515,7 +16533,7 @@ "seed": "0" }, "funcname": "ImHashData", - "location": "internal", + "location": "imgui_internal:245", "ov_cimguiname": "igImHashData", "ret": "ImU32", "signature": "(const void*,size_t,ImU32)", @@ -16547,7 +16565,7 @@ "seed": "0" }, "funcname": "ImHashStr", - "location": "internal", + "location": "imgui_internal:246", "ov_cimguiname": "igImHashStr", "ret": "ImU32", "signature": "(const char*,size_t,ImU32)", @@ -16572,7 +16590,7 @@ "cimguiname": "igImInvLength", "defaults": [], "funcname": "ImInvLength", - "location": "internal", + "location": "imgui_internal:375", "ov_cimguiname": "igImInvLength", "ret": "float", "signature": "(const ImVec2,float)", @@ -16593,7 +16611,7 @@ "cimguiname": "igImIsPowerOfTwo", "defaults": [], "funcname": "ImIsPowerOfTwo", - "location": "internal", + "location": "imgui_internal:258", "ov_cimguiname": "igImIsPowerOfTwo", "ret": "bool", "signature": "(int)", @@ -16614,7 +16632,7 @@ "cimguiname": "igImLengthSqr", "defaults": [], "funcname": "ImLengthSqr", - "location": "internal", + "location": "imgui_internal:373", "ov_cimguiname": "igImLengthSqrVec2", "ret": "float", "signature": "(const ImVec2)", @@ -16633,7 +16651,7 @@ "cimguiname": "igImLengthSqr", "defaults": [], "funcname": "ImLengthSqr", - "location": "internal", + "location": "imgui_internal:374", "ov_cimguiname": "igImLengthSqrVec4", "ret": "float", "signature": "(const ImVec4)", @@ -16666,7 +16684,7 @@ "cimguiname": "igImLerp", "defaults": [], "funcname": "ImLerp", - "location": "internal", + "location": "imgui_internal:369", "nonUDT": 1, "ov_cimguiname": "igImLerpVec2Float", "ret": "void", @@ -16698,7 +16716,7 @@ "cimguiname": "igImLerp", "defaults": [], "funcname": "ImLerp", - "location": "internal", + "location": "imgui_internal:370", "nonUDT": 1, "ov_cimguiname": "igImLerpVec2Vec2", "ret": "void", @@ -16730,7 +16748,7 @@ "cimguiname": "igImLerp", "defaults": [], "funcname": "ImLerp", - "location": "internal", + "location": "imgui_internal:371", "nonUDT": 1, "ov_cimguiname": "igImLerpVec4", "ret": "void", @@ -16764,7 +16782,7 @@ "cimguiname": "igImLineClosestPoint", "defaults": [], "funcname": "ImLineClosestPoint", - "location": "internal", + "location": "imgui_internal:388", "nonUDT": 1, "ov_cimguiname": "igImLineClosestPoint", "ret": "void", @@ -16794,7 +16812,7 @@ "cimguiname": "igImLinearSweep", "defaults": [], "funcname": "ImLinearSweep", - "location": "internal", + "location": "imgui_internal:381", "ov_cimguiname": "igImLinearSweep", "ret": "float", "signature": "(float,float,float)", @@ -16815,7 +16833,7 @@ "cimguiname": "igImLog", "defaults": [], "funcname": "ImLog", - "location": "internal", + "location": "imgui_internal:349", "ov_cimguiname": "igImLogFloat", "ret": "float", "signature": "(float)", @@ -16834,7 +16852,7 @@ "cimguiname": "igImLog", "defaults": [], "funcname": "ImLog", - "location": "internal", + "location": "imgui_internal:350", "ov_cimguiname": "igImLogdouble", "ret": "double", "signature": "(double)", @@ -16863,7 +16881,7 @@ "cimguiname": "igImMax", "defaults": [], "funcname": "ImMax", - "location": "internal", + "location": "imgui_internal:367", "nonUDT": 1, "ov_cimguiname": "igImMax", "ret": "void", @@ -16893,7 +16911,7 @@ "cimguiname": "igImMin", "defaults": [], "funcname": "ImMin", - "location": "internal", + "location": "imgui_internal:366", "nonUDT": 1, "ov_cimguiname": "igImMin", "ret": "void", @@ -16919,7 +16937,7 @@ "cimguiname": "igImModPositive", "defaults": [], "funcname": "ImModPositive", - "location": "internal", + "location": "imgui_internal:378", "ov_cimguiname": "igImModPositive", "ret": "int", "signature": "(int,int)", @@ -16948,7 +16966,7 @@ "cimguiname": "igImMul", "defaults": [], "funcname": "ImMul", - "location": "internal", + "location": "imgui_internal:382", "nonUDT": 1, "ov_cimguiname": "igImMul", "ret": "void", @@ -16970,7 +16988,7 @@ "cimguiname": "igImParseFormatFindEnd", "defaults": [], "funcname": "ImParseFormatFindEnd", - "location": "internal", + "location": "imgui_internal:277", "ov_cimguiname": "igImParseFormatFindEnd", "ret": "const char*", "signature": "(const char*)", @@ -16991,7 +17009,7 @@ "cimguiname": "igImParseFormatFindStart", "defaults": [], "funcname": "ImParseFormatFindStart", - "location": "internal", + "location": "imgui_internal:276", "ov_cimguiname": "igImParseFormatFindStart", "ret": "const char*", "signature": "(const char*)", @@ -17016,7 +17034,7 @@ "cimguiname": "igImParseFormatPrecision", "defaults": [], "funcname": "ImParseFormatPrecision", - "location": "internal", + "location": "imgui_internal:279", "ov_cimguiname": "igImParseFormatPrecision", "ret": "int", "signature": "(const char*,int)", @@ -17045,7 +17063,7 @@ "cimguiname": "igImParseFormatTrimDecorations", "defaults": [], "funcname": "ImParseFormatTrimDecorations", - "location": "internal", + "location": "imgui_internal:278", "ov_cimguiname": "igImParseFormatTrimDecorations", "ret": "const char*", "signature": "(const char*,char*,size_t)", @@ -17070,7 +17088,7 @@ "cimguiname": "igImPow", "defaults": [], "funcname": "ImPow", - "location": "internal", + "location": "imgui_internal:347", "ov_cimguiname": "igImPowFloat", "ret": "float", "signature": "(float,float)", @@ -17093,7 +17111,7 @@ "cimguiname": "igImPow", "defaults": [], "funcname": "ImPow", - "location": "internal", + "location": "imgui_internal:348", "ov_cimguiname": "igImPowdouble", "ret": "double", "signature": "(double,double)", @@ -17126,7 +17144,7 @@ "cimguiname": "igImRotate", "defaults": [], "funcname": "ImRotate", - "location": "internal", + "location": "imgui_internal:380", "nonUDT": 1, "ov_cimguiname": "igImRotate", "ret": "void", @@ -17148,7 +17166,7 @@ "cimguiname": "igImSaturate", "defaults": [], "funcname": "ImSaturate", - "location": "internal", + "location": "imgui_internal:372", "ov_cimguiname": "igImSaturate", "ret": "float", "signature": "(float)", @@ -17169,7 +17187,7 @@ "cimguiname": "igImSign", "defaults": [], "funcname": "ImSign", - "location": "internal", + "location": "imgui_internal:353", "ov_cimguiname": "igImSignFloat", "ret": "float", "signature": "(float)", @@ -17188,7 +17206,7 @@ "cimguiname": "igImSign", "defaults": [], "funcname": "ImSign", - "location": "internal", + "location": "imgui_internal:354", "ov_cimguiname": "igImSigndouble", "ret": "double", "signature": "(double)", @@ -17209,7 +17227,7 @@ "cimguiname": "igImStrSkipBlank", "defaults": [], "funcname": "ImStrSkipBlank", - "location": "internal", + "location": "imgui_internal:273", "ov_cimguiname": "igImStrSkipBlank", "ret": "const char*", "signature": "(const char*)", @@ -17230,7 +17248,7 @@ "cimguiname": "igImStrTrimBlanks", "defaults": [], "funcname": "ImStrTrimBlanks", - "location": "internal", + "location": "imgui_internal:272", "ov_cimguiname": "igImStrTrimBlanks", "ret": "void", "signature": "(char*)", @@ -17255,7 +17273,7 @@ "cimguiname": "igImStrbolW", "defaults": [], "funcname": "ImStrbolW", - "location": "internal", + "location": "imgui_internal:270", "ov_cimguiname": "igImStrbolW", "ret": "const ImWchar*", "signature": "(const ImWchar*,const ImWchar*)", @@ -17284,7 +17302,7 @@ "cimguiname": "igImStrchrRange", "defaults": [], "funcname": "ImStrchrRange", - "location": "internal", + "location": "imgui_internal:267", "ov_cimguiname": "igImStrchrRange", "ret": "const char*", "signature": "(const char*,const char*,char)", @@ -17305,7 +17323,7 @@ "cimguiname": "igImStrdup", "defaults": [], "funcname": "ImStrdup", - "location": "internal", + "location": "imgui_internal:265", "ov_cimguiname": "igImStrdup", "ret": "char*", "signature": "(const char*)", @@ -17334,7 +17352,7 @@ "cimguiname": "igImStrdupcpy", "defaults": [], "funcname": "ImStrdupcpy", - "location": "internal", + "location": "imgui_internal:266", "ov_cimguiname": "igImStrdupcpy", "ret": "char*", "signature": "(char*,size_t*,const char*)", @@ -17359,7 +17377,7 @@ "cimguiname": "igImStreolRange", "defaults": [], "funcname": "ImStreolRange", - "location": "internal", + "location": "imgui_internal:269", "ov_cimguiname": "igImStreolRange", "ret": "const char*", "signature": "(const char*,const char*)", @@ -17384,7 +17402,7 @@ "cimguiname": "igImStricmp", "defaults": [], "funcname": "ImStricmp", - "location": "internal", + "location": "imgui_internal:262", "ov_cimguiname": "igImStricmp", "ret": "int", "signature": "(const char*,const char*)", @@ -17417,7 +17435,7 @@ "cimguiname": "igImStristr", "defaults": [], "funcname": "ImStristr", - "location": "internal", + "location": "imgui_internal:271", "ov_cimguiname": "igImStristr", "ret": "const char*", "signature": "(const char*,const char*,const char*,const char*)", @@ -17438,7 +17456,7 @@ "cimguiname": "igImStrlenW", "defaults": [], "funcname": "ImStrlenW", - "location": "internal", + "location": "imgui_internal:268", "ov_cimguiname": "igImStrlenW", "ret": "int", "signature": "(const ImWchar*)", @@ -17467,7 +17485,7 @@ "cimguiname": "igImStrncpy", "defaults": [], "funcname": "ImStrncpy", - "location": "internal", + "location": "imgui_internal:264", "ov_cimguiname": "igImStrncpy", "ret": "void", "signature": "(char*,const char*,size_t)", @@ -17496,7 +17514,7 @@ "cimguiname": "igImStrnicmp", "defaults": [], "funcname": "ImStrnicmp", - "location": "internal", + "location": "imgui_internal:263", "ov_cimguiname": "igImStrnicmp", "ret": "int", "signature": "(const char*,const char*,size_t)", @@ -17525,7 +17543,7 @@ "cimguiname": "igImTextCharFromUtf8", "defaults": [], "funcname": "ImTextCharFromUtf8", - "location": "internal", + "location": "imgui_internal:285", "ov_cimguiname": "igImTextCharFromUtf8", "ret": "int", "signature": "(unsigned int*,const char*,const char*)", @@ -17550,7 +17568,7 @@ "cimguiname": "igImTextCountCharsFromUtf8", "defaults": [], "funcname": "ImTextCountCharsFromUtf8", - "location": "internal", + "location": "imgui_internal:287", "ov_cimguiname": "igImTextCountCharsFromUtf8", "ret": "int", "signature": "(const char*,const char*)", @@ -17575,7 +17593,7 @@ "cimguiname": "igImTextCountUtf8BytesFromChar", "defaults": [], "funcname": "ImTextCountUtf8BytesFromChar", - "location": "internal", + "location": "imgui_internal:288", "ov_cimguiname": "igImTextCountUtf8BytesFromChar", "ret": "int", "signature": "(const char*,const char*)", @@ -17600,7 +17618,7 @@ "cimguiname": "igImTextCountUtf8BytesFromStr", "defaults": [], "funcname": "ImTextCountUtf8BytesFromStr", - "location": "internal", + "location": "imgui_internal:289", "ov_cimguiname": "igImTextCountUtf8BytesFromStr", "ret": "int", "signature": "(const ImWchar*,const ImWchar*)", @@ -17636,10 +17654,10 @@ "call_args": "(buf,buf_size,in_text,in_text_end,in_remaining)", "cimguiname": "igImTextStrFromUtf8", "defaults": { - "in_remaining": "((void*)0)" + "in_remaining": "NULL" }, "funcname": "ImTextStrFromUtf8", - "location": "internal", + "location": "imgui_internal:286", "ov_cimguiname": "igImTextStrFromUtf8", "ret": "int", "signature": "(ImWchar*,int,const char*,const char*,const char**)", @@ -17672,7 +17690,7 @@ "cimguiname": "igImTextStrToUtf8", "defaults": [], "funcname": "ImTextStrToUtf8", - "location": "internal", + "location": "imgui_internal:284", "ov_cimguiname": "igImTextStrToUtf8", "ret": "int", "signature": "(char*,int,const ImWchar*,const ImWchar*)", @@ -17701,7 +17719,7 @@ "cimguiname": "igImTriangleArea", "defaults": [], "funcname": "ImTriangleArea", - "location": "internal", + "location": "imgui_internal:392", "ov_cimguiname": "igImTriangleArea", "ret": "float", "signature": "(const ImVec2,const ImVec2,const ImVec2)", @@ -17749,7 +17767,7 @@ "cimguiname": "igImTriangleBarycentricCoords", "defaults": [], "funcname": "ImTriangleBarycentricCoords", - "location": "internal", + "location": "imgui_internal:391", "ov_cimguiname": "igImTriangleBarycentricCoords", "ret": "void", "signature": "(const ImVec2,const ImVec2,const ImVec2,const ImVec2,float*,float*,float*)", @@ -17786,7 +17804,7 @@ "cimguiname": "igImTriangleClosestPoint", "defaults": [], "funcname": "ImTriangleClosestPoint", - "location": "internal", + "location": "imgui_internal:390", "nonUDT": 1, "ov_cimguiname": "igImTriangleClosestPoint", "ret": "void", @@ -17820,7 +17838,7 @@ "cimguiname": "igImTriangleContainsPoint", "defaults": [], "funcname": "ImTriangleContainsPoint", - "location": "internal", + "location": "imgui_internal:389", "ov_cimguiname": "igImTriangleContainsPoint", "ret": "bool", "signature": "(const ImVec2,const ImVec2,const ImVec2,const ImVec2)", @@ -17841,7 +17859,7 @@ "cimguiname": "igImUpperPowerOfTwo", "defaults": [], "funcname": "ImUpperPowerOfTwo", - "location": "internal", + "location": "imgui_internal:259", "ov_cimguiname": "igImUpperPowerOfTwo", "ret": "int", "signature": "(int)", @@ -17887,7 +17905,7 @@ "uv1": "ImVec2(1,1)" }, "funcname": "Image", - "location": "imgui", + "location": "imgui:444", "namespace": "ImGui", "ov_cimguiname": "igImage", "ret": "void", @@ -17939,7 +17957,7 @@ "uv1": "ImVec2(1,1)" }, "funcname": "ImageButton", - "location": "imgui", + "location": "imgui:445", "namespace": "ImGui", "ov_cimguiname": "igImageButton", "ret": "bool", @@ -17989,7 +18007,7 @@ "cimguiname": "igImageButtonEx", "defaults": [], "funcname": "ImageButtonEx", - "location": "internal", + "location": "imgui_internal:1973", "namespace": "ImGui", "ov_cimguiname": "igImageButtonEx", "ret": "bool", @@ -18013,7 +18031,7 @@ "indent_w": "0.0f" }, "funcname": "Indent", - "location": "imgui", + "location": "imgui:387", "namespace": "ImGui", "ov_cimguiname": "igIndent", "ret": "void", @@ -18035,7 +18053,7 @@ "cimguiname": "igInitialize", "defaults": [], "funcname": "Initialize", - "location": "internal", + "location": "imgui_internal:1802", "namespace": "ImGui", "ov_cimguiname": "igInitialize", "ret": "void", @@ -18082,7 +18100,7 @@ "step_fast": "0.0" }, "funcname": "InputDouble", - "location": "imgui", + "location": "imgui:521", "namespace": "ImGui", "ov_cimguiname": "igInputDouble", "ret": "bool", @@ -18129,7 +18147,7 @@ "step_fast": "0.0f" }, "funcname": "InputFloat", - "location": "imgui", + "location": "imgui:513", "namespace": "ImGui", "ov_cimguiname": "igInputFloat", "ret": "bool", @@ -18166,7 +18184,7 @@ "format": "\"%.3f\"" }, "funcname": "InputFloat2", - "location": "imgui", + "location": "imgui:514", "namespace": "ImGui", "ov_cimguiname": "igInputFloat2", "ret": "bool", @@ -18203,7 +18221,7 @@ "format": "\"%.3f\"" }, "funcname": "InputFloat3", - "location": "imgui", + "location": "imgui:515", "namespace": "ImGui", "ov_cimguiname": "igInputFloat3", "ret": "bool", @@ -18240,7 +18258,7 @@ "format": "\"%.3f\"" }, "funcname": "InputFloat4", - "location": "imgui", + "location": "imgui:516", "namespace": "ImGui", "ov_cimguiname": "igInputFloat4", "ret": "bool", @@ -18282,7 +18300,7 @@ "step_fast": "100" }, "funcname": "InputInt", - "location": "imgui", + "location": "imgui:517", "namespace": "ImGui", "ov_cimguiname": "igInputInt", "ret": "bool", @@ -18314,7 +18332,7 @@ "flags": "0" }, "funcname": "InputInt2", - "location": "imgui", + "location": "imgui:518", "namespace": "ImGui", "ov_cimguiname": "igInputInt2", "ret": "bool", @@ -18346,7 +18364,7 @@ "flags": "0" }, "funcname": "InputInt3", - "location": "imgui", + "location": "imgui:519", "namespace": "ImGui", "ov_cimguiname": "igInputInt3", "ret": "bool", @@ -18378,7 +18396,7 @@ "flags": "0" }, "funcname": "InputInt4", - "location": "imgui", + "location": "imgui:520", "namespace": "ImGui", "ov_cimguiname": "igInputInt4", "ret": "bool", @@ -18424,12 +18442,12 @@ "cimguiname": "igInputScalar", "defaults": { "flags": "0", - "format": "((void*)0)", - "p_step": "((void*)0)", - "p_step_fast": "((void*)0)" + "format": "NULL", + "p_step": "NULL", + "p_step_fast": "NULL" }, "funcname": "InputScalar", - "location": "imgui", + "location": "imgui:522", "namespace": "ImGui", "ov_cimguiname": "igInputScalar", "ret": "bool", @@ -18479,12 +18497,12 @@ "cimguiname": "igInputScalarN", "defaults": { "flags": "0", - "format": "((void*)0)", - "p_step": "((void*)0)", - "p_step_fast": "((void*)0)" + "format": "NULL", + "p_step": "NULL", + "p_step_fast": "NULL" }, "funcname": "InputScalarN", - "location": "imgui", + "location": "imgui:523", "namespace": "ImGui", "ov_cimguiname": "igInputScalarN", "ret": "bool", @@ -18525,12 +18543,12 @@ "call_args": "(label,buf,buf_size,flags,callback,user_data)", "cimguiname": "igInputText", "defaults": { - "callback": "((void*)0)", + "callback": "NULL", "flags": "0", - "user_data": "((void*)0)" + "user_data": "NULL" }, "funcname": "InputText", - "location": "imgui", + "location": "imgui:510", "namespace": "ImGui", "ov_cimguiname": "igInputText", "ret": "bool", @@ -18579,11 +18597,11 @@ "call_args": "(label,hint,buf,buf_size,size_arg,flags,callback,user_data)", "cimguiname": "igInputTextEx", "defaults": { - "callback": "((void*)0)", - "user_data": "((void*)0)" + "callback": "NULL", + "user_data": "NULL" }, "funcname": "InputTextEx", - "location": "internal", + "location": "imgui_internal:2005", "namespace": "ImGui", "ov_cimguiname": "igInputTextEx", "ret": "bool", @@ -18628,13 +18646,13 @@ "call_args": "(label,buf,buf_size,size,flags,callback,user_data)", "cimguiname": "igInputTextMultiline", "defaults": { - "callback": "((void*)0)", + "callback": "NULL", "flags": "0", "size": "ImVec2(0,0)", - "user_data": "((void*)0)" + "user_data": "NULL" }, "funcname": "InputTextMultiline", - "location": "imgui", + "location": "imgui:511", "namespace": "ImGui", "ov_cimguiname": "igInputTextMultiline", "ret": "bool", @@ -18679,12 +18697,12 @@ "call_args": "(label,hint,buf,buf_size,flags,callback,user_data)", "cimguiname": "igInputTextWithHint", "defaults": { - "callback": "((void*)0)", + "callback": "NULL", "flags": "0", - "user_data": "((void*)0)" + "user_data": "NULL" }, "funcname": "InputTextWithHint", - "location": "imgui", + "location": "imgui:512", "namespace": "ImGui", "ov_cimguiname": "igInputTextWithHint", "ret": "bool", @@ -18716,7 +18734,7 @@ "flags": "0" }, "funcname": "InvisibleButton", - "location": "imgui", + "location": "imgui:442", "namespace": "ImGui", "ov_cimguiname": "igInvisibleButton", "ret": "bool", @@ -18738,7 +18756,7 @@ "cimguiname": "igIsActiveIdUsingKey", "defaults": [], "funcname": "IsActiveIdUsingKey", - "location": "internal", + "location": "imgui_internal:1900", "namespace": "ImGui", "ov_cimguiname": "igIsActiveIdUsingKey", "ret": "bool", @@ -18760,7 +18778,7 @@ "cimguiname": "igIsActiveIdUsingNavDir", "defaults": [], "funcname": "IsActiveIdUsingNavDir", - "location": "internal", + "location": "imgui_internal:1898", "namespace": "ImGui", "ov_cimguiname": "igIsActiveIdUsingNavDir", "ret": "bool", @@ -18782,7 +18800,7 @@ "cimguiname": "igIsActiveIdUsingNavInput", "defaults": [], "funcname": "IsActiveIdUsingNavInput", - "location": "internal", + "location": "imgui_internal:1899", "namespace": "ImGui", "ov_cimguiname": "igIsActiveIdUsingNavInput", "ret": "bool", @@ -18799,7 +18817,7 @@ "cimguiname": "igIsAnyItemActive", "defaults": [], "funcname": "IsAnyItemActive", - "location": "imgui", + "location": "imgui:703", "namespace": "ImGui", "ov_cimguiname": "igIsAnyItemActive", "ret": "bool", @@ -18816,7 +18834,7 @@ "cimguiname": "igIsAnyItemFocused", "defaults": [], "funcname": "IsAnyItemFocused", - "location": "imgui", + "location": "imgui:704", "namespace": "ImGui", "ov_cimguiname": "igIsAnyItemFocused", "ret": "bool", @@ -18833,7 +18851,7 @@ "cimguiname": "igIsAnyItemHovered", "defaults": [], "funcname": "IsAnyItemHovered", - "location": "imgui", + "location": "imgui:702", "namespace": "ImGui", "ov_cimguiname": "igIsAnyItemHovered", "ret": "bool", @@ -18850,7 +18868,7 @@ "cimguiname": "igIsAnyMouseDown", "defaults": [], "funcname": "IsAnyMouseDown", - "location": "imgui", + "location": "imgui:754", "namespace": "ImGui", "ov_cimguiname": "igIsAnyMouseDown", "ret": "bool", @@ -18880,7 +18898,7 @@ "cimguiname": "igIsClippedEx", "defaults": [], "funcname": "IsClippedEx", - "location": "internal", + "location": "imgui_internal:1847", "namespace": "ImGui", "ov_cimguiname": "igIsClippedEx", "ret": "bool", @@ -18897,7 +18915,7 @@ "cimguiname": "igIsDragDropPayloadBeingAccepted", "defaults": [], "funcname": "IsDragDropPayloadBeingAccepted", - "location": "internal", + "location": "imgui_internal:1910", "namespace": "ImGui", "ov_cimguiname": "igIsDragDropPayloadBeingAccepted", "ret": "bool", @@ -18914,7 +18932,7 @@ "cimguiname": "igIsItemActivated", "defaults": [], "funcname": "IsItemActivated", - "location": "imgui", + "location": "imgui:698", "namespace": "ImGui", "ov_cimguiname": "igIsItemActivated", "ret": "bool", @@ -18931,7 +18949,7 @@ "cimguiname": "igIsItemActive", "defaults": [], "funcname": "IsItemActive", - "location": "imgui", + "location": "imgui:693", "namespace": "ImGui", "ov_cimguiname": "igIsItemActive", "ret": "bool", @@ -18955,7 +18973,7 @@ "mouse_button": "0" }, "funcname": "IsItemClicked", - "location": "imgui", + "location": "imgui:695", "namespace": "ImGui", "ov_cimguiname": "igIsItemClicked", "ret": "bool", @@ -18972,7 +18990,7 @@ "cimguiname": "igIsItemDeactivated", "defaults": [], "funcname": "IsItemDeactivated", - "location": "imgui", + "location": "imgui:699", "namespace": "ImGui", "ov_cimguiname": "igIsItemDeactivated", "ret": "bool", @@ -18989,7 +19007,7 @@ "cimguiname": "igIsItemDeactivatedAfterEdit", "defaults": [], "funcname": "IsItemDeactivatedAfterEdit", - "location": "imgui", + "location": "imgui:700", "namespace": "ImGui", "ov_cimguiname": "igIsItemDeactivatedAfterEdit", "ret": "bool", @@ -19006,7 +19024,7 @@ "cimguiname": "igIsItemEdited", "defaults": [], "funcname": "IsItemEdited", - "location": "imgui", + "location": "imgui:697", "namespace": "ImGui", "ov_cimguiname": "igIsItemEdited", "ret": "bool", @@ -19023,7 +19041,7 @@ "cimguiname": "igIsItemFocused", "defaults": [], "funcname": "IsItemFocused", - "location": "imgui", + "location": "imgui:694", "namespace": "ImGui", "ov_cimguiname": "igIsItemFocused", "ret": "bool", @@ -19047,7 +19065,7 @@ "flags": "0" }, "funcname": "IsItemHovered", - "location": "imgui", + "location": "imgui:692", "namespace": "ImGui", "ov_cimguiname": "igIsItemHovered", "ret": "bool", @@ -19064,7 +19082,7 @@ "cimguiname": "igIsItemToggledOpen", "defaults": [], "funcname": "IsItemToggledOpen", - "location": "imgui", + "location": "imgui:701", "namespace": "ImGui", "ov_cimguiname": "igIsItemToggledOpen", "ret": "bool", @@ -19081,7 +19099,7 @@ "cimguiname": "igIsItemToggledSelection", "defaults": [], "funcname": "IsItemToggledSelection", - "location": "internal", + "location": "imgui_internal:1856", "namespace": "ImGui", "ov_cimguiname": "igIsItemToggledSelection", "ret": "bool", @@ -19098,7 +19116,7 @@ "cimguiname": "igIsItemVisible", "defaults": [], "funcname": "IsItemVisible", - "location": "imgui", + "location": "imgui:696", "namespace": "ImGui", "ov_cimguiname": "igIsItemVisible", "ret": "bool", @@ -19120,7 +19138,7 @@ "cimguiname": "igIsKeyDown", "defaults": [], "funcname": "IsKeyDown", - "location": "imgui", + "location": "imgui:738", "namespace": "ImGui", "ov_cimguiname": "igIsKeyDown", "ret": "bool", @@ -19148,7 +19166,7 @@ "repeat": "true" }, "funcname": "IsKeyPressed", - "location": "imgui", + "location": "imgui:739", "namespace": "ImGui", "ov_cimguiname": "igIsKeyPressed", "ret": "bool", @@ -19176,7 +19194,7 @@ "repeat": "true" }, "funcname": "IsKeyPressedMap", - "location": "internal", + "location": "imgui_internal:1902", "namespace": "ImGui", "ov_cimguiname": "igIsKeyPressedMap", "ret": "bool", @@ -19198,7 +19216,7 @@ "cimguiname": "igIsKeyReleased", "defaults": [], "funcname": "IsKeyReleased", - "location": "imgui", + "location": "imgui:740", "namespace": "ImGui", "ov_cimguiname": "igIsKeyReleased", "ret": "bool", @@ -19226,7 +19244,7 @@ "repeat": "false" }, "funcname": "IsMouseClicked", - "location": "imgui", + "location": "imgui:749", "namespace": "ImGui", "ov_cimguiname": "igIsMouseClicked", "ret": "bool", @@ -19248,7 +19266,7 @@ "cimguiname": "igIsMouseDoubleClicked", "defaults": [], "funcname": "IsMouseDoubleClicked", - "location": "imgui", + "location": "imgui:751", "namespace": "ImGui", "ov_cimguiname": "igIsMouseDoubleClicked", "ret": "bool", @@ -19270,7 +19288,7 @@ "cimguiname": "igIsMouseDown", "defaults": [], "funcname": "IsMouseDown", - "location": "imgui", + "location": "imgui:748", "namespace": "ImGui", "ov_cimguiname": "igIsMouseDown", "ret": "bool", @@ -19298,7 +19316,7 @@ "lock_threshold": "-1.0f" }, "funcname": "IsMouseDragPastThreshold", - "location": "internal", + "location": "imgui_internal:1901", "namespace": "ImGui", "ov_cimguiname": "igIsMouseDragPastThreshold", "ret": "bool", @@ -19326,7 +19344,7 @@ "lock_threshold": "-1.0f" }, "funcname": "IsMouseDragging", - "location": "imgui", + "location": "imgui:757", "namespace": "ImGui", "ov_cimguiname": "igIsMouseDragging", "ret": "bool", @@ -19358,7 +19376,7 @@ "clip": "true" }, "funcname": "IsMouseHoveringRect", - "location": "imgui", + "location": "imgui:752", "namespace": "ImGui", "ov_cimguiname": "igIsMouseHoveringRect", "ret": "bool", @@ -19379,10 +19397,10 @@ "call_args": "(mouse_pos)", "cimguiname": "igIsMousePosValid", "defaults": { - "mouse_pos": "((void*)0)" + "mouse_pos": "NULL" }, "funcname": "IsMousePosValid", - "location": "imgui", + "location": "imgui:753", "namespace": "ImGui", "ov_cimguiname": "igIsMousePosValid", "ret": "bool", @@ -19404,7 +19422,7 @@ "cimguiname": "igIsMouseReleased", "defaults": [], "funcname": "IsMouseReleased", - "location": "imgui", + "location": "imgui:750", "namespace": "ImGui", "ov_cimguiname": "igIsMouseReleased", "ret": "bool", @@ -19426,7 +19444,7 @@ "cimguiname": "igIsNavInputDown", "defaults": [], "funcname": "IsNavInputDown", - "location": "internal", + "location": "imgui_internal:1903", "namespace": "ImGui", "ov_cimguiname": "igIsNavInputDown", "ret": "bool", @@ -19452,7 +19470,7 @@ "cimguiname": "igIsNavInputTest", "defaults": [], "funcname": "IsNavInputTest", - "location": "internal", + "location": "imgui_internal:1904", "namespace": "ImGui", "ov_cimguiname": "igIsNavInputTest", "ret": "bool", @@ -19480,7 +19498,7 @@ "flags": "0" }, "funcname": "IsPopupOpen", - "location": "imgui", + "location": "imgui:637", "namespace": "ImGui", "ov_cimguiname": "igIsPopupOpenStr", "ret": "bool", @@ -19504,7 +19522,7 @@ "cimguiname": "igIsPopupOpen", "defaults": [], "funcname": "IsPopupOpen", - "location": "internal", + "location": "imgui_internal:1869", "namespace": "ImGui", "ov_cimguiname": "igIsPopupOpenID", "ret": "bool", @@ -19526,7 +19544,7 @@ "cimguiname": "igIsRectVisible", "defaults": [], "funcname": "IsRectVisible", - "location": "imgui", + "location": "imgui:711", "namespace": "ImGui", "ov_cimguiname": "igIsRectVisibleNil", "ret": "bool", @@ -19550,7 +19568,7 @@ "cimguiname": "igIsRectVisible", "defaults": [], "funcname": "IsRectVisible", - "location": "imgui", + "location": "imgui:712", "namespace": "ImGui", "ov_cimguiname": "igIsRectVisibleVec2", "ret": "bool", @@ -19567,7 +19585,7 @@ "cimguiname": "igIsWindowAppearing", "defaults": [], "funcname": "IsWindowAppearing", - "location": "imgui", + "location": "imgui:298", "namespace": "ImGui", "ov_cimguiname": "igIsWindowAppearing", "ret": "bool", @@ -19593,7 +19611,7 @@ "cimguiname": "igIsWindowChildOf", "defaults": [], "funcname": "IsWindowChildOf", - "location": "internal", + "location": "imgui_internal:1781", "namespace": "ImGui", "ov_cimguiname": "igIsWindowChildOf", "ret": "bool", @@ -19610,7 +19628,7 @@ "cimguiname": "igIsWindowCollapsed", "defaults": [], "funcname": "IsWindowCollapsed", - "location": "imgui", + "location": "imgui:299", "namespace": "ImGui", "ov_cimguiname": "igIsWindowCollapsed", "ret": "bool", @@ -19634,7 +19652,7 @@ "flags": "0" }, "funcname": "IsWindowFocused", - "location": "imgui", + "location": "imgui:300", "namespace": "ImGui", "ov_cimguiname": "igIsWindowFocused", "ret": "bool", @@ -19658,7 +19676,7 @@ "flags": "0" }, "funcname": "IsWindowHovered", - "location": "imgui", + "location": "imgui:301", "namespace": "ImGui", "ov_cimguiname": "igIsWindowHovered", "ret": "bool", @@ -19680,7 +19698,7 @@ "cimguiname": "igIsWindowNavFocusable", "defaults": [], "funcname": "IsWindowNavFocusable", - "location": "internal", + "location": "imgui_internal:1782", "namespace": "ImGui", "ov_cimguiname": "igIsWindowNavFocusable", "ret": "bool", @@ -19709,10 +19727,10 @@ "call_args": "(bb,id,nav_bb)", "cimguiname": "igItemAdd", "defaults": { - "nav_bb": "((void*)0)" + "nav_bb": "NULL" }, "funcname": "ItemAdd", - "location": "internal", + "location": "imgui_internal:1845", "namespace": "ImGui", "ov_cimguiname": "igItemAdd", "ret": "bool", @@ -19738,7 +19756,7 @@ "cimguiname": "igItemHoverable", "defaults": [], "funcname": "ItemHoverable", - "location": "internal", + "location": "imgui_internal:1846", "namespace": "ImGui", "ov_cimguiname": "igItemHoverable", "ret": "bool", @@ -19766,7 +19784,7 @@ "text_baseline_y": "-1.0f" }, "funcname": "ItemSize", - "location": "internal", + "location": "imgui_internal:1843", "namespace": "ImGui", "ov_cimguiname": "igItemSizeVec2", "ret": "void", @@ -19792,7 +19810,7 @@ "text_baseline_y": "-1.0f" }, "funcname": "ItemSize", - "location": "internal", + "location": "imgui_internal:1844", "namespace": "ImGui", "ov_cimguiname": "igItemSizeRect", "ret": "void", @@ -19814,7 +19832,7 @@ "cimguiname": "igKeepAliveID", "defaults": [], "funcname": "KeepAliveID", - "location": "internal", + "location": "imgui_internal:1838", "namespace": "ImGui", "ov_cimguiname": "igKeepAliveID", "ret": "void", @@ -19845,7 +19863,7 @@ "defaults": [], "funcname": "LabelText", "isvararg": "...)", - "location": "imgui", + "location": "imgui:432", "namespace": "ImGui", "ov_cimguiname": "igLabelText", "ret": "void", @@ -19875,7 +19893,7 @@ "cimguiname": "igLabelTextV", "defaults": [], "funcname": "LabelTextV", - "location": "imgui", + "location": "imgui:433", "namespace": "ImGui", "ov_cimguiname": "igLabelTextV", "ret": "void", @@ -19915,7 +19933,7 @@ "height_in_items": "-1" }, "funcname": "ListBox", - "location": "imgui", + "location": "imgui:563", "namespace": "ImGui", "ov_cimguiname": "igListBoxStr_arr", "ret": "bool", @@ -19959,7 +19977,7 @@ "height_in_items": "-1" }, "funcname": "ListBox", - "location": "imgui", + "location": "imgui:564", "namespace": "ImGui", "ov_cimguiname": "igListBoxFnBoolPtr", "ret": "bool", @@ -19976,7 +19994,7 @@ "cimguiname": "igListBoxFooter", "defaults": [], "funcname": "ListBoxFooter", - "location": "imgui", + "location": "imgui:567", "namespace": "ImGui", "ov_cimguiname": "igListBoxFooter", "ret": "void", @@ -20004,7 +20022,7 @@ "size": "ImVec2(0,0)" }, "funcname": "ListBoxHeader", - "location": "imgui", + "location": "imgui:565", "namespace": "ImGui", "ov_cimguiname": "igListBoxHeaderVec2", "ret": "bool", @@ -20034,7 +20052,7 @@ "height_in_items": "-1" }, "funcname": "ListBoxHeader", - "location": "imgui", + "location": "imgui:566", "namespace": "ImGui", "ov_cimguiname": "igListBoxHeaderInt", "ret": "bool", @@ -20056,7 +20074,7 @@ "cimguiname": "igLoadIniSettingsFromDisk", "defaults": [], "funcname": "LoadIniSettingsFromDisk", - "location": "imgui", + "location": "imgui:772", "namespace": "ImGui", "ov_cimguiname": "igLoadIniSettingsFromDisk", "ret": "void", @@ -20084,7 +20102,7 @@ "ini_size": "0" }, "funcname": "LoadIniSettingsFromMemory", - "location": "imgui", + "location": "imgui:773", "namespace": "ImGui", "ov_cimguiname": "igLoadIniSettingsFromMemory", "ret": "void", @@ -20110,7 +20128,7 @@ "cimguiname": "igLogBegin", "defaults": [], "funcname": "LogBegin", - "location": "internal", + "location": "imgui_internal:1861", "namespace": "ImGui", "ov_cimguiname": "igLogBegin", "ret": "void", @@ -20127,7 +20145,7 @@ "cimguiname": "igLogButtons", "defaults": [], "funcname": "LogButtons", - "location": "imgui", + "location": "imgui:666", "namespace": "ImGui", "ov_cimguiname": "igLogButtons", "ret": "void", @@ -20144,7 +20162,7 @@ "cimguiname": "igLogFinish", "defaults": [], "funcname": "LogFinish", - "location": "imgui", + "location": "imgui:665", "namespace": "ImGui", "ov_cimguiname": "igLogFinish", "ret": "void", @@ -20173,10 +20191,10 @@ "call_args": "(ref_pos,text,text_end)", "cimguiname": "igLogRenderedText", "defaults": { - "text_end": "((void*)0)" + "text_end": "NULL" }, "funcname": "LogRenderedText", - "location": "internal", + "location": "imgui_internal:1948", "namespace": "ImGui", "ov_cimguiname": "igLogRenderedText", "ret": "void", @@ -20203,7 +20221,7 @@ "defaults": [], "funcname": "LogText", "isvararg": "...)", - "location": "imgui", + "location": "imgui:667", "manual": true, "namespace": "ImGui", "ov_cimguiname": "igLogText", @@ -20228,7 +20246,7 @@ "auto_open_depth": "-1" }, "funcname": "LogToBuffer", - "location": "internal", + "location": "imgui_internal:1862", "namespace": "ImGui", "ov_cimguiname": "igLogToBuffer", "ret": "void", @@ -20252,7 +20270,7 @@ "auto_open_depth": "-1" }, "funcname": "LogToClipboard", - "location": "imgui", + "location": "imgui:664", "namespace": "ImGui", "ov_cimguiname": "igLogToClipboard", "ret": "void", @@ -20278,10 +20296,10 @@ "cimguiname": "igLogToFile", "defaults": { "auto_open_depth": "-1", - "filename": "((void*)0)" + "filename": "NULL" }, "funcname": "LogToFile", - "location": "imgui", + "location": "imgui:663", "namespace": "ImGui", "ov_cimguiname": "igLogToFile", "ret": "void", @@ -20305,7 +20323,7 @@ "auto_open_depth": "-1" }, "funcname": "LogToTTY", - "location": "imgui", + "location": "imgui:662", "namespace": "ImGui", "ov_cimguiname": "igLogToTTY", "ret": "void", @@ -20322,7 +20340,7 @@ "cimguiname": "igMarkIniSettingsDirty", "defaults": [], "funcname": "MarkIniSettingsDirty", - "location": "internal", + "location": "imgui_internal:1812", "namespace": "ImGui", "ov_cimguiname": "igMarkIniSettingsDirtyNil", "ret": "void", @@ -20342,7 +20360,7 @@ "cimguiname": "igMarkIniSettingsDirty", "defaults": [], "funcname": "MarkIniSettingsDirty", - "location": "internal", + "location": "imgui_internal:1813", "namespace": "ImGui", "ov_cimguiname": "igMarkIniSettingsDirtyWindowPtr", "ret": "void", @@ -20364,7 +20382,7 @@ "cimguiname": "igMarkItemEdited", "defaults": [], "funcname": "MarkItemEdited", - "location": "internal", + "location": "imgui_internal:1839", "namespace": "ImGui", "ov_cimguiname": "igMarkItemEdited", "ret": "void", @@ -20386,7 +20404,7 @@ "cimguiname": "igMemAlloc", "defaults": [], "funcname": "MemAlloc", - "location": "imgui", + "location": "imgui:784", "namespace": "ImGui", "ov_cimguiname": "igMemAlloc", "ret": "void*", @@ -20408,7 +20426,7 @@ "cimguiname": "igMemFree", "defaults": [], "funcname": "MemFree", - "location": "imgui", + "location": "imgui:785", "namespace": "ImGui", "ov_cimguiname": "igMemFree", "ret": "void", @@ -20443,10 +20461,10 @@ "defaults": { "enabled": "true", "selected": "false", - "shortcut": "((void*)0)" + "shortcut": "NULL" }, "funcname": "MenuItem", - "location": "imgui", + "location": "imgui:592", "namespace": "ImGui", "ov_cimguiname": "igMenuItemBool", "ret": "bool", @@ -20480,7 +20498,7 @@ "enabled": "true" }, "funcname": "MenuItem", - "location": "imgui", + "location": "imgui:593", "namespace": "ImGui", "ov_cimguiname": "igMenuItemBoolPtr", "ret": "bool", @@ -20506,7 +20524,7 @@ "cimguiname": "igNavInitWindow", "defaults": [], "funcname": "NavInitWindow", - "location": "internal", + "location": "imgui_internal:1877", "namespace": "ImGui", "ov_cimguiname": "igNavInitWindow", "ret": "void", @@ -20523,7 +20541,7 @@ "cimguiname": "igNavMoveRequestButNoResultYet", "defaults": [], "funcname": "NavMoveRequestButNoResultYet", - "location": "internal", + "location": "imgui_internal:1878", "namespace": "ImGui", "ov_cimguiname": "igNavMoveRequestButNoResultYet", "ret": "bool", @@ -20540,7 +20558,7 @@ "cimguiname": "igNavMoveRequestCancel", "defaults": [], "funcname": "NavMoveRequestCancel", - "location": "internal", + "location": "imgui_internal:1879", "namespace": "ImGui", "ov_cimguiname": "igNavMoveRequestCancel", "ret": "void", @@ -20574,7 +20592,7 @@ "cimguiname": "igNavMoveRequestForward", "defaults": [], "funcname": "NavMoveRequestForward", - "location": "internal", + "location": "imgui_internal:1880", "namespace": "ImGui", "ov_cimguiname": "igNavMoveRequestForward", "ret": "void", @@ -20600,7 +20618,7 @@ "cimguiname": "igNavMoveRequestTryWrapping", "defaults": [], "funcname": "NavMoveRequestTryWrapping", - "location": "internal", + "location": "imgui_internal:1881", "namespace": "ImGui", "ov_cimguiname": "igNavMoveRequestTryWrapping", "ret": "void", @@ -20617,7 +20635,7 @@ "cimguiname": "igNewFrame", "defaults": [], "funcname": "NewFrame", - "location": "imgui", + "location": "imgui:252", "namespace": "ImGui", "ov_cimguiname": "igNewFrame", "ret": "void", @@ -20634,7 +20652,7 @@ "cimguiname": "igNewLine", "defaults": [], "funcname": "NewLine", - "location": "imgui", + "location": "imgui:384", "namespace": "ImGui", "ov_cimguiname": "igNewLine", "ret": "void", @@ -20651,7 +20669,7 @@ "cimguiname": "igNextColumn", "defaults": [], "funcname": "NextColumn", - "location": "imgui", + "location": "imgui:645", "namespace": "ImGui", "ov_cimguiname": "igNextColumn", "ret": "void", @@ -20679,7 +20697,7 @@ "popup_flags": "0" }, "funcname": "OpenPopup", - "location": "imgui", + "location": "imgui:622", "namespace": "ImGui", "ov_cimguiname": "igOpenPopup", "ret": "void", @@ -20705,10 +20723,10 @@ "cimguiname": "igOpenPopupContextItem", "defaults": { "popup_flags": "1", - "str_id": "((void*)0)" + "str_id": "NULL" }, "funcname": "OpenPopupContextItem", - "location": "imgui", + "location": "imgui:623", "namespace": "ImGui", "ov_cimguiname": "igOpenPopupContextItem", "ret": "bool", @@ -20736,7 +20754,7 @@ "popup_flags": "ImGuiPopupFlags_None" }, "funcname": "OpenPopupEx", - "location": "internal", + "location": "imgui_internal:1866", "namespace": "ImGui", "ov_cimguiname": "igOpenPopupEx", "ret": "void", @@ -20796,7 +20814,7 @@ "cimguiname": "igPlotEx", "defaults": [], "funcname": "PlotEx", - "location": "internal", + "location": "imgui_internal:2017", "namespace": "ImGui", "ov_cimguiname": "igPlotEx", "ret": "int", @@ -20850,14 +20868,14 @@ "cimguiname": "igPlotHistogram", "defaults": { "graph_size": "ImVec2(0,0)", - "overlay_text": "((void*)0)", + "overlay_text": "NULL", "scale_max": "FLT_MAX", "scale_min": "FLT_MAX", "stride": "sizeof(float)", "values_offset": "0" }, "funcname": "PlotHistogram", - "location": "imgui", + "location": "imgui:572", "namespace": "ImGui", "ov_cimguiname": "igPlotHistogramFloatPtr", "ret": "void", @@ -20911,13 +20929,13 @@ "cimguiname": "igPlotHistogram", "defaults": { "graph_size": "ImVec2(0,0)", - "overlay_text": "((void*)0)", + "overlay_text": "NULL", "scale_max": "FLT_MAX", "scale_min": "FLT_MAX", "values_offset": "0" }, "funcname": "PlotHistogram", - "location": "imgui", + "location": "imgui:573", "namespace": "ImGui", "ov_cimguiname": "igPlotHistogramFnFloatPtr", "ret": "void", @@ -20971,14 +20989,14 @@ "cimguiname": "igPlotLines", "defaults": { "graph_size": "ImVec2(0,0)", - "overlay_text": "((void*)0)", + "overlay_text": "NULL", "scale_max": "FLT_MAX", "scale_min": "FLT_MAX", "stride": "sizeof(float)", "values_offset": "0" }, "funcname": "PlotLines", - "location": "imgui", + "location": "imgui:570", "namespace": "ImGui", "ov_cimguiname": "igPlotLinesFloatPtr", "ret": "void", @@ -21032,13 +21050,13 @@ "cimguiname": "igPlotLines", "defaults": { "graph_size": "ImVec2(0,0)", - "overlay_text": "((void*)0)", + "overlay_text": "NULL", "scale_max": "FLT_MAX", "scale_min": "FLT_MAX", "values_offset": "0" }, "funcname": "PlotLines", - "location": "imgui", + "location": "imgui:571", "namespace": "ImGui", "ov_cimguiname": "igPlotLinesFnFloatPtr", "ret": "void", @@ -21055,7 +21073,7 @@ "cimguiname": "igPopAllowKeyboardFocus", "defaults": [], "funcname": "PopAllowKeyboardFocus", - "location": "imgui", + "location": "imgui:371", "namespace": "ImGui", "ov_cimguiname": "igPopAllowKeyboardFocus", "ret": "void", @@ -21072,7 +21090,7 @@ "cimguiname": "igPopButtonRepeat", "defaults": [], "funcname": "PopButtonRepeat", - "location": "imgui", + "location": "imgui:373", "namespace": "ImGui", "ov_cimguiname": "igPopButtonRepeat", "ret": "void", @@ -21089,7 +21107,7 @@ "cimguiname": "igPopClipRect", "defaults": [], "funcname": "PopClipRect", - "location": "imgui", + "location": "imgui:682", "namespace": "ImGui", "ov_cimguiname": "igPopClipRect", "ret": "void", @@ -21106,7 +21124,7 @@ "cimguiname": "igPopColumnsBackground", "defaults": [], "funcname": "PopColumnsBackground", - "location": "internal", + "location": "imgui_internal:1918", "namespace": "ImGui", "ov_cimguiname": "igPopColumnsBackground", "ret": "void", @@ -21123,7 +21141,7 @@ "cimguiname": "igPopFocusScope", "defaults": [], "funcname": "PopFocusScope", - "location": "internal", + "location": "imgui_internal:1893", "namespace": "ImGui", "ov_cimguiname": "igPopFocusScope", "ret": "void", @@ -21140,7 +21158,7 @@ "cimguiname": "igPopFont", "defaults": [], "funcname": "PopFont", - "location": "imgui", + "location": "imgui:348", "namespace": "ImGui", "ov_cimguiname": "igPopFont", "ret": "void", @@ -21157,7 +21175,7 @@ "cimguiname": "igPopID", "defaults": [], "funcname": "PopID", - "location": "imgui", + "location": "imgui:417", "namespace": "ImGui", "ov_cimguiname": "igPopID", "ret": "void", @@ -21174,7 +21192,7 @@ "cimguiname": "igPopItemFlag", "defaults": [], "funcname": "PopItemFlag", - "location": "internal", + "location": "imgui_internal:1855", "namespace": "ImGui", "ov_cimguiname": "igPopItemFlag", "ret": "void", @@ -21191,7 +21209,7 @@ "cimguiname": "igPopItemWidth", "defaults": [], "funcname": "PopItemWidth", - "location": "imgui", + "location": "imgui:365", "namespace": "ImGui", "ov_cimguiname": "igPopItemWidth", "ret": "void", @@ -21215,7 +21233,7 @@ "count": "1" }, "funcname": "PopStyleColor", - "location": "imgui", + "location": "imgui:351", "namespace": "ImGui", "ov_cimguiname": "igPopStyleColor", "ret": "void", @@ -21239,7 +21257,7 @@ "count": "1" }, "funcname": "PopStyleVar", - "location": "imgui", + "location": "imgui:354", "namespace": "ImGui", "ov_cimguiname": "igPopStyleVar", "ret": "void", @@ -21256,7 +21274,7 @@ "cimguiname": "igPopTextWrapPos", "defaults": [], "funcname": "PopTextWrapPos", - "location": "imgui", + "location": "imgui:369", "namespace": "ImGui", "ov_cimguiname": "igPopTextWrapPos", "ret": "void", @@ -21285,11 +21303,11 @@ "call_args": "(fraction,size_arg,overlay)", "cimguiname": "igProgressBar", "defaults": { - "overlay": "((void*)0)", + "overlay": "NULL", "size_arg": "ImVec2(-1,0)" }, "funcname": "ProgressBar", - "location": "imgui", + "location": "imgui:450", "namespace": "ImGui", "ov_cimguiname": "igProgressBar", "ret": "void", @@ -21311,7 +21329,7 @@ "cimguiname": "igPushAllowKeyboardFocus", "defaults": [], "funcname": "PushAllowKeyboardFocus", - "location": "imgui", + "location": "imgui:370", "namespace": "ImGui", "ov_cimguiname": "igPushAllowKeyboardFocus", "ret": "void", @@ -21333,7 +21351,7 @@ "cimguiname": "igPushButtonRepeat", "defaults": [], "funcname": "PushButtonRepeat", - "location": "imgui", + "location": "imgui:372", "namespace": "ImGui", "ov_cimguiname": "igPushButtonRepeat", "ret": "void", @@ -21363,7 +21381,7 @@ "cimguiname": "igPushClipRect", "defaults": [], "funcname": "PushClipRect", - "location": "imgui", + "location": "imgui:681", "namespace": "ImGui", "ov_cimguiname": "igPushClipRect", "ret": "void", @@ -21385,7 +21403,7 @@ "cimguiname": "igPushColumnClipRect", "defaults": [], "funcname": "PushColumnClipRect", - "location": "internal", + "location": "imgui_internal:1916", "namespace": "ImGui", "ov_cimguiname": "igPushColumnClipRect", "ret": "void", @@ -21402,7 +21420,7 @@ "cimguiname": "igPushColumnsBackground", "defaults": [], "funcname": "PushColumnsBackground", - "location": "internal", + "location": "imgui_internal:1917", "namespace": "ImGui", "ov_cimguiname": "igPushColumnsBackground", "ret": "void", @@ -21424,7 +21442,7 @@ "cimguiname": "igPushFocusScope", "defaults": [], "funcname": "PushFocusScope", - "location": "internal", + "location": "imgui_internal:1892", "namespace": "ImGui", "ov_cimguiname": "igPushFocusScope", "ret": "void", @@ -21446,7 +21464,7 @@ "cimguiname": "igPushFont", "defaults": [], "funcname": "PushFont", - "location": "imgui", + "location": "imgui:347", "namespace": "ImGui", "ov_cimguiname": "igPushFont", "ret": "void", @@ -21468,7 +21486,7 @@ "cimguiname": "igPushID", "defaults": [], "funcname": "PushID", - "location": "imgui", + "location": "imgui:413", "namespace": "ImGui", "ov_cimguiname": "igPushIDStr", "ret": "void", @@ -21492,7 +21510,7 @@ "cimguiname": "igPushID", "defaults": [], "funcname": "PushID", - "location": "imgui", + "location": "imgui:414", "namespace": "ImGui", "ov_cimguiname": "igPushIDStrStr", "ret": "void", @@ -21512,7 +21530,7 @@ "cimguiname": "igPushID", "defaults": [], "funcname": "PushID", - "location": "imgui", + "location": "imgui:415", "namespace": "ImGui", "ov_cimguiname": "igPushIDPtr", "ret": "void", @@ -21532,7 +21550,7 @@ "cimguiname": "igPushID", "defaults": [], "funcname": "PushID", - "location": "imgui", + "location": "imgui:416", "namespace": "ImGui", "ov_cimguiname": "igPushIDInt", "ret": "void", @@ -21558,7 +21576,7 @@ "cimguiname": "igPushItemFlag", "defaults": [], "funcname": "PushItemFlag", - "location": "internal", + "location": "imgui_internal:1854", "namespace": "ImGui", "ov_cimguiname": "igPushItemFlag", "ret": "void", @@ -21580,7 +21598,7 @@ "cimguiname": "igPushItemWidth", "defaults": [], "funcname": "PushItemWidth", - "location": "imgui", + "location": "imgui:364", "namespace": "ImGui", "ov_cimguiname": "igPushItemWidth", "ret": "void", @@ -21606,7 +21624,7 @@ "cimguiname": "igPushMultiItemsWidths", "defaults": [], "funcname": "PushMultiItemsWidths", - "location": "internal", + "location": "imgui_internal:1853", "namespace": "ImGui", "ov_cimguiname": "igPushMultiItemsWidths", "ret": "void", @@ -21628,7 +21646,7 @@ "cimguiname": "igPushOverrideID", "defaults": [], "funcname": "PushOverrideID", - "location": "internal", + "location": "imgui_internal:1840", "namespace": "ImGui", "ov_cimguiname": "igPushOverrideID", "ret": "void", @@ -21654,7 +21672,7 @@ "cimguiname": "igPushStyleColor", "defaults": [], "funcname": "PushStyleColor", - "location": "imgui", + "location": "imgui:349", "namespace": "ImGui", "ov_cimguiname": "igPushStyleColorU32", "ret": "void", @@ -21678,7 +21696,7 @@ "cimguiname": "igPushStyleColor", "defaults": [], "funcname": "PushStyleColor", - "location": "imgui", + "location": "imgui:350", "namespace": "ImGui", "ov_cimguiname": "igPushStyleColorVec4", "ret": "void", @@ -21704,7 +21722,7 @@ "cimguiname": "igPushStyleVar", "defaults": [], "funcname": "PushStyleVar", - "location": "imgui", + "location": "imgui:352", "namespace": "ImGui", "ov_cimguiname": "igPushStyleVarFloat", "ret": "void", @@ -21728,7 +21746,7 @@ "cimguiname": "igPushStyleVar", "defaults": [], "funcname": "PushStyleVar", - "location": "imgui", + "location": "imgui:353", "namespace": "ImGui", "ov_cimguiname": "igPushStyleVarVec2", "ret": "void", @@ -21752,7 +21770,7 @@ "wrap_local_pos_x": "0.0f" }, "funcname": "PushTextWrapPos", - "location": "imgui", + "location": "imgui:368", "namespace": "ImGui", "ov_cimguiname": "igPushTextWrapPos", "ret": "void", @@ -21778,7 +21796,7 @@ "cimguiname": "igRadioButton", "defaults": [], "funcname": "RadioButton", - "location": "imgui", + "location": "imgui:448", "namespace": "ImGui", "ov_cimguiname": "igRadioButtonBool", "ret": "bool", @@ -21806,7 +21824,7 @@ "cimguiname": "igRadioButton", "defaults": [], "funcname": "RadioButton", - "location": "imgui", + "location": "imgui:449", "namespace": "ImGui", "ov_cimguiname": "igRadioButtonIntPtr", "ret": "bool", @@ -21823,7 +21841,7 @@ "cimguiname": "igRender", "defaults": [], "funcname": "Render", - "location": "imgui", + "location": "imgui:254", "namespace": "ImGui", "ov_cimguiname": "igRender", "ret": "void", @@ -21863,7 +21881,7 @@ "scale": "1.0f" }, "funcname": "RenderArrow", - "location": "internal", + "location": "imgui_internal:1951", "namespace": "ImGui", "ov_cimguiname": "igRenderArrow", "ret": "void", @@ -21901,7 +21919,7 @@ "cimguiname": "igRenderArrowPointingAt", "defaults": [], "funcname": "RenderArrowPointingAt", - "location": "internal", + "location": "imgui_internal:1955", "namespace": "ImGui", "ov_cimguiname": "igRenderArrowPointingAt", "ret": "void", @@ -21931,7 +21949,7 @@ "cimguiname": "igRenderBullet", "defaults": [], "funcname": "RenderBullet", - "location": "internal", + "location": "imgui_internal:1952", "namespace": "ImGui", "ov_cimguiname": "igRenderBullet", "ret": "void", @@ -21965,7 +21983,7 @@ "cimguiname": "igRenderCheckMark", "defaults": [], "funcname": "RenderCheckMark", - "location": "internal", + "location": "imgui_internal:1953", "namespace": "ImGui", "ov_cimguiname": "igRenderCheckMark", "ret": "void", @@ -22018,7 +22036,7 @@ "rounding_corners_flags": "~0" }, "funcname": "RenderColorRectWithAlphaCheckerboard", - "location": "internal", + "location": "imgui_internal:1945", "namespace": "ImGui", "ov_cimguiname": "igRenderColorRectWithAlphaCheckerboard", "ret": "void", @@ -22059,7 +22077,7 @@ "rounding": "0.0f" }, "funcname": "RenderFrame", - "location": "internal", + "location": "imgui_internal:1943", "namespace": "ImGui", "ov_cimguiname": "igRenderFrame", "ret": "void", @@ -22091,7 +22109,7 @@ "rounding": "0.0f" }, "funcname": "RenderFrameBorder", - "location": "internal", + "location": "imgui_internal:1944", "namespace": "ImGui", "ov_cimguiname": "igRenderFrameBorder", "ret": "void", @@ -22137,7 +22155,7 @@ "cimguiname": "igRenderMouseCursor", "defaults": [], "funcname": "RenderMouseCursor", - "location": "internal", + "location": "imgui_internal:1954", "namespace": "ImGui", "ov_cimguiname": "igRenderMouseCursor", "ret": "void", @@ -22169,7 +22187,7 @@ "flags": "ImGuiNavHighlightFlags_TypeDefault" }, "funcname": "RenderNavHighlight", - "location": "internal", + "location": "imgui_internal:1946", "namespace": "ImGui", "ov_cimguiname": "igRenderNavHighlight", "ret": "void", @@ -22211,7 +22229,7 @@ "cimguiname": "igRenderRectFilledRangeH", "defaults": [], "funcname": "RenderRectFilledRangeH", - "location": "internal", + "location": "imgui_internal:1956", "namespace": "ImGui", "ov_cimguiname": "igRenderRectFilledRangeH", "ret": "void", @@ -22249,7 +22267,7 @@ "cimguiname": "igRenderRectFilledWithHole", "defaults": [], "funcname": "RenderRectFilledWithHole", - "location": "internal", + "location": "imgui_internal:1957", "namespace": "ImGui", "ov_cimguiname": "igRenderRectFilledWithHole", "ret": "void", @@ -22283,10 +22301,10 @@ "cimguiname": "igRenderText", "defaults": { "hide_text_after_hash": "true", - "text_end": "((void*)0)" + "text_end": "NULL" }, "funcname": "RenderText", - "location": "internal", + "location": "imgui_internal:1938", "namespace": "ImGui", "ov_cimguiname": "igRenderText", "ret": "void", @@ -22332,10 +22350,10 @@ "cimguiname": "igRenderTextClipped", "defaults": { "align": "ImVec2(0,0)", - "clip_rect": "((void*)0)" + "clip_rect": "NULL" }, "funcname": "RenderTextClipped", - "location": "internal", + "location": "imgui_internal:1940", "namespace": "ImGui", "ov_cimguiname": "igRenderTextClipped", "ret": "void", @@ -22385,10 +22403,10 @@ "cimguiname": "igRenderTextClippedEx", "defaults": { "align": "ImVec2(0,0)", - "clip_rect": "((void*)0)" + "clip_rect": "NULL" }, "funcname": "RenderTextClippedEx", - "location": "internal", + "location": "imgui_internal:1941", "namespace": "ImGui", "ov_cimguiname": "igRenderTextClippedEx", "ret": "void", @@ -22438,7 +22456,7 @@ "cimguiname": "igRenderTextEllipsis", "defaults": [], "funcname": "RenderTextEllipsis", - "location": "internal", + "location": "imgui_internal:1942", "namespace": "ImGui", "ov_cimguiname": "igRenderTextEllipsis", "ret": "void", @@ -22472,7 +22490,7 @@ "cimguiname": "igRenderTextWrapped", "defaults": [], "funcname": "RenderTextWrapped", - "location": "internal", + "location": "imgui_internal:1939", "namespace": "ImGui", "ov_cimguiname": "igRenderTextWrapped", "ret": "void", @@ -22496,7 +22514,7 @@ "button": "0" }, "funcname": "ResetMouseDragDelta", - "location": "imgui", + "location": "imgui:759", "namespace": "ImGui", "ov_cimguiname": "igResetMouseDragDelta", "ret": "void", @@ -22525,7 +22543,7 @@ "spacing": "-1.0f" }, "funcname": "SameLine", - "location": "imgui", + "location": "imgui:383", "namespace": "ImGui", "ov_cimguiname": "igSameLine", "ret": "void", @@ -22547,7 +22565,7 @@ "cimguiname": "igSaveIniSettingsToDisk", "defaults": [], "funcname": "SaveIniSettingsToDisk", - "location": "imgui", + "location": "imgui:774", "namespace": "ImGui", "ov_cimguiname": "igSaveIniSettingsToDisk", "ret": "void", @@ -22568,10 +22586,10 @@ "call_args": "(out_ini_size)", "cimguiname": "igSaveIniSettingsToMemory", "defaults": { - "out_ini_size": "((void*)0)" + "out_ini_size": "NULL" }, "funcname": "SaveIniSettingsToMemory", - "location": "imgui", + "location": "imgui:775", "namespace": "ImGui", "ov_cimguiname": "igSaveIniSettingsToMemory", "ret": "const char*", @@ -22601,7 +22619,7 @@ "cimguiname": "igScrollToBringRectIntoView", "defaults": [], "funcname": "ScrollToBringRectIntoView", - "location": "internal", + "location": "imgui_internal:1826", "namespace": "ImGui", "nonUDT": 1, "ov_cimguiname": "igScrollToBringRectIntoView", @@ -22624,7 +22642,7 @@ "cimguiname": "igScrollbar", "defaults": [], "funcname": "Scrollbar", - "location": "internal", + "location": "imgui_internal:1971", "namespace": "ImGui", "ov_cimguiname": "igScrollbar", "ret": "void", @@ -22670,7 +22688,7 @@ "cimguiname": "igScrollbarEx", "defaults": [], "funcname": "ScrollbarEx", - "location": "internal", + "location": "imgui_internal:1972", "namespace": "ImGui", "ov_cimguiname": "igScrollbarEx", "ret": "bool", @@ -22708,7 +22726,7 @@ "size": "ImVec2(0,0)" }, "funcname": "Selectable", - "location": "imgui", + "location": "imgui:558", "namespace": "ImGui", "ov_cimguiname": "igSelectableBool", "ret": "bool", @@ -22743,7 +22761,7 @@ "size": "ImVec2(0,0)" }, "funcname": "Selectable", - "location": "imgui", + "location": "imgui:559", "namespace": "ImGui", "ov_cimguiname": "igSelectableBoolPtr", "ret": "bool", @@ -22760,7 +22778,7 @@ "cimguiname": "igSeparator", "defaults": [], "funcname": "Separator", - "location": "imgui", + "location": "imgui:382", "namespace": "ImGui", "ov_cimguiname": "igSeparator", "ret": "void", @@ -22782,7 +22800,7 @@ "cimguiname": "igSeparatorEx", "defaults": [], "funcname": "SeparatorEx", - "location": "internal", + "location": "imgui_internal:1977", "namespace": "ImGui", "ov_cimguiname": "igSeparatorEx", "ret": "void", @@ -22808,7 +22826,7 @@ "cimguiname": "igSetActiveID", "defaults": [], "funcname": "SetActiveID", - "location": "internal", + "location": "imgui_internal:1833", "namespace": "ImGui", "ov_cimguiname": "igSetActiveID", "ret": "void", @@ -22841,10 +22859,10 @@ "call_args": "(alloc_func,free_func,user_data)", "cimguiname": "igSetAllocatorFunctions", "defaults": { - "user_data": "((void*)0)" + "user_data": "NULL" }, "funcname": "SetAllocatorFunctions", - "location": "imgui", + "location": "imgui:783", "namespace": "ImGui", "ov_cimguiname": "igSetAllocatorFunctions", "ret": "void", @@ -22866,7 +22884,7 @@ "cimguiname": "igSetClipboardText", "defaults": [], "funcname": "SetClipboardText", - "location": "imgui", + "location": "imgui:767", "namespace": "ImGui", "ov_cimguiname": "igSetClipboardText", "ret": "void", @@ -22888,7 +22906,7 @@ "cimguiname": "igSetColorEditOptions", "defaults": [], "funcname": "SetColorEditOptions", - "location": "imgui", + "location": "imgui:533", "namespace": "ImGui", "ov_cimguiname": "igSetColorEditOptions", "ret": "void", @@ -22914,7 +22932,7 @@ "cimguiname": "igSetColumnOffset", "defaults": [], "funcname": "SetColumnOffset", - "location": "imgui", + "location": "imgui:650", "namespace": "ImGui", "ov_cimguiname": "igSetColumnOffset", "ret": "void", @@ -22940,7 +22958,7 @@ "cimguiname": "igSetColumnWidth", "defaults": [], "funcname": "SetColumnWidth", - "location": "imgui", + "location": "imgui:648", "namespace": "ImGui", "ov_cimguiname": "igSetColumnWidth", "ret": "void", @@ -22962,7 +22980,7 @@ "cimguiname": "igSetCurrentContext", "defaults": [], "funcname": "SetCurrentContext", - "location": "imgui", + "location": "imgui:247", "namespace": "ImGui", "ov_cimguiname": "igSetCurrentContext", "ret": "void", @@ -22984,7 +23002,7 @@ "cimguiname": "igSetCurrentFont", "defaults": [], "funcname": "SetCurrentFont", - "location": "internal", + "location": "imgui_internal:1797", "namespace": "ImGui", "ov_cimguiname": "igSetCurrentFont", "ret": "void", @@ -23006,7 +23024,7 @@ "cimguiname": "igSetCursorPos", "defaults": [], "funcname": "SetCursorPos", - "location": "imgui", + "location": "imgui:394", "namespace": "ImGui", "ov_cimguiname": "igSetCursorPos", "ret": "void", @@ -23028,7 +23046,7 @@ "cimguiname": "igSetCursorPosX", "defaults": [], "funcname": "SetCursorPosX", - "location": "imgui", + "location": "imgui:395", "namespace": "ImGui", "ov_cimguiname": "igSetCursorPosX", "ret": "void", @@ -23050,7 +23068,7 @@ "cimguiname": "igSetCursorPosY", "defaults": [], "funcname": "SetCursorPosY", - "location": "imgui", + "location": "imgui:396", "namespace": "ImGui", "ov_cimguiname": "igSetCursorPosY", "ret": "void", @@ -23072,7 +23090,7 @@ "cimguiname": "igSetCursorScreenPos", "defaults": [], "funcname": "SetCursorScreenPos", - "location": "imgui", + "location": "imgui:399", "namespace": "ImGui", "ov_cimguiname": "igSetCursorScreenPos", "ret": "void", @@ -23108,7 +23126,7 @@ "cond": "0" }, "funcname": "SetDragDropPayload", - "location": "imgui", + "location": "imgui:673", "namespace": "ImGui", "ov_cimguiname": "igSetDragDropPayload", "ret": "bool", @@ -23134,7 +23152,7 @@ "cimguiname": "igSetFocusID", "defaults": [], "funcname": "SetFocusID", - "location": "internal", + "location": "imgui_internal:1834", "namespace": "ImGui", "ov_cimguiname": "igSetFocusID", "ret": "void", @@ -23156,7 +23174,7 @@ "cimguiname": "igSetHoveredID", "defaults": [], "funcname": "SetHoveredID", - "location": "internal", + "location": "imgui_internal:1837", "namespace": "ImGui", "ov_cimguiname": "igSetHoveredID", "ret": "void", @@ -23173,7 +23191,7 @@ "cimguiname": "igSetItemAllowOverlap", "defaults": [], "funcname": "SetItemAllowOverlap", - "location": "imgui", + "location": "imgui:708", "namespace": "ImGui", "ov_cimguiname": "igSetItemAllowOverlap", "ret": "void", @@ -23190,7 +23208,7 @@ "cimguiname": "igSetItemDefaultFocus", "defaults": [], "funcname": "SetItemDefaultFocus", - "location": "imgui", + "location": "imgui:686", "namespace": "ImGui", "ov_cimguiname": "igSetItemDefaultFocus", "ret": "void", @@ -23214,7 +23232,7 @@ "offset": "0" }, "funcname": "SetKeyboardFocusHere", - "location": "imgui", + "location": "imgui:687", "namespace": "ImGui", "ov_cimguiname": "igSetKeyboardFocusHere", "ret": "void", @@ -23248,7 +23266,7 @@ "cimguiname": "igSetLastItemData", "defaults": [], "funcname": "SetLastItemData", - "location": "internal", + "location": "imgui_internal:1848", "namespace": "ImGui", "ov_cimguiname": "igSetLastItemData", "ret": "void", @@ -23270,7 +23288,7 @@ "cimguiname": "igSetMouseCursor", "defaults": [], "funcname": "SetMouseCursor", - "location": "imgui", + "location": "imgui:761", "namespace": "ImGui", "ov_cimguiname": "igSetMouseCursor", "ret": "void", @@ -23300,7 +23318,7 @@ "cimguiname": "igSetNavID", "defaults": [], "funcname": "SetNavID", - "location": "internal", + "location": "imgui_internal:1886", "namespace": "ImGui", "ov_cimguiname": "igSetNavID", "ret": "void", @@ -23334,7 +23352,7 @@ "cimguiname": "igSetNavIDWithRectRel", "defaults": [], "funcname": "SetNavIDWithRectRel", - "location": "internal", + "location": "imgui_internal:1887", "namespace": "ImGui", "ov_cimguiname": "igSetNavIDWithRectRel", "ret": "void", @@ -23362,7 +23380,7 @@ "cond": "0" }, "funcname": "SetNextItemOpen", - "location": "imgui", + "location": "imgui:553", "namespace": "ImGui", "ov_cimguiname": "igSetNextItemOpen", "ret": "void", @@ -23384,7 +23402,7 @@ "cimguiname": "igSetNextItemWidth", "defaults": [], "funcname": "SetNextItemWidth", - "location": "imgui", + "location": "imgui:366", "namespace": "ImGui", "ov_cimguiname": "igSetNextItemWidth", "ret": "void", @@ -23406,7 +23424,7 @@ "cimguiname": "igSetNextWindowBgAlpha", "defaults": [], "funcname": "SetNextWindowBgAlpha", - "location": "imgui", + "location": "imgui:315", "namespace": "ImGui", "ov_cimguiname": "igSetNextWindowBgAlpha", "ret": "void", @@ -23434,7 +23452,7 @@ "cond": "0" }, "funcname": "SetNextWindowCollapsed", - "location": "imgui", + "location": "imgui:313", "namespace": "ImGui", "ov_cimguiname": "igSetNextWindowCollapsed", "ret": "void", @@ -23456,7 +23474,7 @@ "cimguiname": "igSetNextWindowContentSize", "defaults": [], "funcname": "SetNextWindowContentSize", - "location": "imgui", + "location": "imgui:312", "namespace": "ImGui", "ov_cimguiname": "igSetNextWindowContentSize", "ret": "void", @@ -23473,7 +23491,7 @@ "cimguiname": "igSetNextWindowFocus", "defaults": [], "funcname": "SetNextWindowFocus", - "location": "imgui", + "location": "imgui:314", "namespace": "ImGui", "ov_cimguiname": "igSetNextWindowFocus", "ret": "void", @@ -23506,7 +23524,7 @@ "pivot": "ImVec2(0,0)" }, "funcname": "SetNextWindowPos", - "location": "imgui", + "location": "imgui:309", "namespace": "ImGui", "ov_cimguiname": "igSetNextWindowPos", "ret": "void", @@ -23528,7 +23546,7 @@ "cimguiname": "igSetNextWindowScroll", "defaults": [], "funcname": "SetNextWindowScroll", - "location": "internal", + "location": "imgui_internal:1821", "namespace": "ImGui", "ov_cimguiname": "igSetNextWindowScroll", "ret": "void", @@ -23556,7 +23574,7 @@ "cond": "0" }, "funcname": "SetNextWindowSize", - "location": "imgui", + "location": "imgui:310", "namespace": "ImGui", "ov_cimguiname": "igSetNextWindowSize", "ret": "void", @@ -23589,11 +23607,11 @@ "call_args": "(size_min,size_max,custom_callback,custom_callback_data)", "cimguiname": "igSetNextWindowSizeConstraints", "defaults": { - "custom_callback": "((void*)0)", - "custom_callback_data": "((void*)0)" + "custom_callback": "NULL", + "custom_callback_data": "NULL" }, "funcname": "SetNextWindowSizeConstraints", - "location": "imgui", + "location": "imgui:311", "namespace": "ImGui", "ov_cimguiname": "igSetNextWindowSizeConstraints", "ret": "void", @@ -23621,7 +23639,7 @@ "center_x_ratio": "0.5f" }, "funcname": "SetScrollFromPosX", - "location": "imgui", + "location": "imgui:343", "namespace": "ImGui", "ov_cimguiname": "igSetScrollFromPosXFloat", "ret": "void", @@ -23651,7 +23669,7 @@ "center_x_ratio": "0.5f" }, "funcname": "SetScrollFromPosX", - "location": "internal", + "location": "imgui_internal:1824", "namespace": "ImGui", "ov_cimguiname": "igSetScrollFromPosXWindowPtr", "ret": "void", @@ -23679,7 +23697,7 @@ "center_y_ratio": "0.5f" }, "funcname": "SetScrollFromPosY", - "location": "imgui", + "location": "imgui:344", "namespace": "ImGui", "ov_cimguiname": "igSetScrollFromPosYFloat", "ret": "void", @@ -23709,7 +23727,7 @@ "center_y_ratio": "0.5f" }, "funcname": "SetScrollFromPosY", - "location": "internal", + "location": "imgui_internal:1825", "namespace": "ImGui", "ov_cimguiname": "igSetScrollFromPosYWindowPtr", "ret": "void", @@ -23733,7 +23751,7 @@ "center_x_ratio": "0.5f" }, "funcname": "SetScrollHereX", - "location": "imgui", + "location": "imgui:341", "namespace": "ImGui", "ov_cimguiname": "igSetScrollHereX", "ret": "void", @@ -23757,7 +23775,7 @@ "center_y_ratio": "0.5f" }, "funcname": "SetScrollHereY", - "location": "imgui", + "location": "imgui:342", "namespace": "ImGui", "ov_cimguiname": "igSetScrollHereY", "ret": "void", @@ -23779,7 +23797,7 @@ "cimguiname": "igSetScrollX", "defaults": [], "funcname": "SetScrollX", - "location": "imgui", + "location": "imgui:339", "namespace": "ImGui", "ov_cimguiname": "igSetScrollXFloat", "ret": "void", @@ -23803,7 +23821,7 @@ "cimguiname": "igSetScrollX", "defaults": [], "funcname": "SetScrollX", - "location": "internal", + "location": "imgui_internal:1822", "namespace": "ImGui", "ov_cimguiname": "igSetScrollXWindowPtr", "ret": "void", @@ -23825,7 +23843,7 @@ "cimguiname": "igSetScrollY", "defaults": [], "funcname": "SetScrollY", - "location": "imgui", + "location": "imgui:340", "namespace": "ImGui", "ov_cimguiname": "igSetScrollYFloat", "ret": "void", @@ -23849,7 +23867,7 @@ "cimguiname": "igSetScrollY", "defaults": [], "funcname": "SetScrollY", - "location": "internal", + "location": "imgui_internal:1823", "namespace": "ImGui", "ov_cimguiname": "igSetScrollYWindowPtr", "ret": "void", @@ -23871,7 +23889,7 @@ "cimguiname": "igSetStateStorage", "defaults": [], "funcname": "SetStateStorage", - "location": "imgui", + "location": "imgui:719", "namespace": "ImGui", "ov_cimguiname": "igSetStateStorage", "ret": "void", @@ -23893,7 +23911,7 @@ "cimguiname": "igSetTabItemClosed", "defaults": [], "funcname": "SetTabItemClosed", - "location": "imgui", + "location": "imgui:658", "namespace": "ImGui", "ov_cimguiname": "igSetTabItemClosed", "ret": "void", @@ -23920,7 +23938,7 @@ "defaults": [], "funcname": "SetTooltip", "isvararg": "...)", - "location": "imgui", + "location": "imgui:599", "namespace": "ImGui", "ov_cimguiname": "igSetTooltip", "ret": "void", @@ -23946,7 +23964,7 @@ "cimguiname": "igSetTooltipV", "defaults": [], "funcname": "SetTooltipV", - "location": "imgui", + "location": "imgui:600", "namespace": "ImGui", "ov_cimguiname": "igSetTooltipV", "ret": "void", @@ -23972,7 +23990,7 @@ "cimguiname": "igSetWindowClipRectBeforeSetChannel", "defaults": [], "funcname": "SetWindowClipRectBeforeSetChannel", - "location": "internal", + "location": "imgui_internal:1913", "namespace": "ImGui", "ov_cimguiname": "igSetWindowClipRectBeforeSetChannel", "ret": "void", @@ -24000,7 +24018,7 @@ "cond": "0" }, "funcname": "SetWindowCollapsed", - "location": "imgui", + "location": "imgui:318", "namespace": "ImGui", "ov_cimguiname": "igSetWindowCollapsedBool", "ret": "void", @@ -24030,7 +24048,7 @@ "cond": "0" }, "funcname": "SetWindowCollapsed", - "location": "imgui", + "location": "imgui:323", "namespace": "ImGui", "ov_cimguiname": "igSetWindowCollapsedStr", "ret": "void", @@ -24060,7 +24078,7 @@ "cond": "0" }, "funcname": "SetWindowCollapsed", - "location": "internal", + "location": "imgui_internal:1786", "namespace": "ImGui", "ov_cimguiname": "igSetWindowCollapsedWindowPtr", "ret": "void", @@ -24077,7 +24095,7 @@ "cimguiname": "igSetWindowFocus", "defaults": [], "funcname": "SetWindowFocus", - "location": "imgui", + "location": "imgui:319", "namespace": "ImGui", "ov_cimguiname": "igSetWindowFocusNil", "ret": "void", @@ -24097,7 +24115,7 @@ "cimguiname": "igSetWindowFocus", "defaults": [], "funcname": "SetWindowFocus", - "location": "imgui", + "location": "imgui:324", "namespace": "ImGui", "ov_cimguiname": "igSetWindowFocusStr", "ret": "void", @@ -24119,7 +24137,7 @@ "cimguiname": "igSetWindowFontScale", "defaults": [], "funcname": "SetWindowFontScale", - "location": "imgui", + "location": "imgui:320", "namespace": "ImGui", "ov_cimguiname": "igSetWindowFontScale", "ret": "void", @@ -24149,7 +24167,7 @@ "cimguiname": "igSetWindowHitTestHole", "defaults": [], "funcname": "SetWindowHitTestHole", - "location": "internal", + "location": "imgui_internal:1787", "namespace": "ImGui", "ov_cimguiname": "igSetWindowHitTestHole", "ret": "void", @@ -24177,7 +24195,7 @@ "cond": "0" }, "funcname": "SetWindowPos", - "location": "imgui", + "location": "imgui:316", "namespace": "ImGui", "ov_cimguiname": "igSetWindowPosVec2", "ret": "void", @@ -24207,7 +24225,7 @@ "cond": "0" }, "funcname": "SetWindowPos", - "location": "imgui", + "location": "imgui:321", "namespace": "ImGui", "ov_cimguiname": "igSetWindowPosStr", "ret": "void", @@ -24237,7 +24255,7 @@ "cond": "0" }, "funcname": "SetWindowPos", - "location": "internal", + "location": "imgui_internal:1784", "namespace": "ImGui", "ov_cimguiname": "igSetWindowPosWindowPtr", "ret": "void", @@ -24265,7 +24283,7 @@ "cond": "0" }, "funcname": "SetWindowSize", - "location": "imgui", + "location": "imgui:317", "namespace": "ImGui", "ov_cimguiname": "igSetWindowSizeVec2", "ret": "void", @@ -24295,7 +24313,7 @@ "cond": "0" }, "funcname": "SetWindowSize", - "location": "imgui", + "location": "imgui:322", "namespace": "ImGui", "ov_cimguiname": "igSetWindowSizeStr", "ret": "void", @@ -24325,7 +24343,7 @@ "cond": "0" }, "funcname": "SetWindowSize", - "location": "internal", + "location": "imgui_internal:1785", "namespace": "ImGui", "ov_cimguiname": "igSetWindowSizeWindowPtr", "ret": "void", @@ -24371,7 +24389,7 @@ "cimguiname": "igShadeVertsLinearColorGradientKeepAlpha", "defaults": [], "funcname": "ShadeVertsLinearColorGradientKeepAlpha", - "location": "internal", + "location": "imgui_internal:2020", "namespace": "ImGui", "ov_cimguiname": "igShadeVertsLinearColorGradientKeepAlpha", "ret": "void", @@ -24421,7 +24439,7 @@ "cimguiname": "igShadeVertsLinearUV", "defaults": [], "funcname": "ShadeVertsLinearUV", - "location": "internal", + "location": "imgui_internal:2021", "namespace": "ImGui", "ov_cimguiname": "igShadeVertsLinearUV", "ret": "void", @@ -24442,10 +24460,10 @@ "call_args": "(p_open)", "cimguiname": "igShowAboutWindow", "defaults": { - "p_open": "((void*)0)" + "p_open": "NULL" }, "funcname": "ShowAboutWindow", - "location": "imgui", + "location": "imgui:259", "namespace": "ImGui", "ov_cimguiname": "igShowAboutWindow", "ret": "void", @@ -24466,10 +24484,10 @@ "call_args": "(p_open)", "cimguiname": "igShowDemoWindow", "defaults": { - "p_open": "((void*)0)" + "p_open": "NULL" }, "funcname": "ShowDemoWindow", - "location": "imgui", + "location": "imgui:258", "namespace": "ImGui", "ov_cimguiname": "igShowDemoWindow", "ret": "void", @@ -24491,7 +24509,7 @@ "cimguiname": "igShowFontSelector", "defaults": [], "funcname": "ShowFontSelector", - "location": "imgui", + "location": "imgui:263", "namespace": "ImGui", "ov_cimguiname": "igShowFontSelector", "ret": "void", @@ -24512,10 +24530,10 @@ "call_args": "(p_open)", "cimguiname": "igShowMetricsWindow", "defaults": { - "p_open": "((void*)0)" + "p_open": "NULL" }, "funcname": "ShowMetricsWindow", - "location": "imgui", + "location": "imgui:260", "namespace": "ImGui", "ov_cimguiname": "igShowMetricsWindow", "ret": "void", @@ -24536,10 +24554,10 @@ "call_args": "(ref)", "cimguiname": "igShowStyleEditor", "defaults": { - "ref": "((void*)0)" + "ref": "NULL" }, "funcname": "ShowStyleEditor", - "location": "imgui", + "location": "imgui:261", "namespace": "ImGui", "ov_cimguiname": "igShowStyleEditor", "ret": "void", @@ -24561,7 +24579,7 @@ "cimguiname": "igShowStyleSelector", "defaults": [], "funcname": "ShowStyleSelector", - "location": "imgui", + "location": "imgui:262", "namespace": "ImGui", "ov_cimguiname": "igShowStyleSelector", "ret": "bool", @@ -24578,7 +24596,7 @@ "cimguiname": "igShowUserGuide", "defaults": [], "funcname": "ShowUserGuide", - "location": "imgui", + "location": "imgui:264", "namespace": "ImGui", "ov_cimguiname": "igShowUserGuide", "ret": "void", @@ -24608,7 +24626,7 @@ "cimguiname": "igShrinkWidths", "defaults": [], "funcname": "ShrinkWidths", - "location": "internal", + "location": "imgui_internal:1858", "namespace": "ImGui", "ov_cimguiname": "igShrinkWidths", "ret": "void", @@ -24630,7 +24648,7 @@ "cimguiname": "igShutdown", "defaults": [], "funcname": "Shutdown", - "location": "internal", + "location": "imgui_internal:1803", "namespace": "ImGui", "ov_cimguiname": "igShutdown", "ret": "void", @@ -24677,7 +24695,7 @@ "v_degrees_min": "-360.0f" }, "funcname": "SliderAngle", - "location": "imgui", + "location": "imgui:496", "namespace": "ImGui", "ov_cimguiname": "igSliderAngle", "ret": "bool", @@ -24731,7 +24749,7 @@ "cimguiname": "igSliderBehavior", "defaults": [], "funcname": "SliderBehavior", - "location": "internal", + "location": "imgui_internal:1982", "namespace": "ImGui", "ov_cimguiname": "igSliderBehavior", "ret": "bool", @@ -24776,7 +24794,7 @@ "format": "\"%.3f\"" }, "funcname": "SliderFloat", - "location": "imgui", + "location": "imgui:492", "namespace": "ImGui", "ov_cimguiname": "igSliderFloat", "ret": "bool", @@ -24821,7 +24839,7 @@ "format": "\"%.3f\"" }, "funcname": "SliderFloat2", - "location": "imgui", + "location": "imgui:493", "namespace": "ImGui", "ov_cimguiname": "igSliderFloat2", "ret": "bool", @@ -24866,7 +24884,7 @@ "format": "\"%.3f\"" }, "funcname": "SliderFloat3", - "location": "imgui", + "location": "imgui:494", "namespace": "ImGui", "ov_cimguiname": "igSliderFloat3", "ret": "bool", @@ -24911,7 +24929,7 @@ "format": "\"%.3f\"" }, "funcname": "SliderFloat4", - "location": "imgui", + "location": "imgui:495", "namespace": "ImGui", "ov_cimguiname": "igSliderFloat4", "ret": "bool", @@ -24956,7 +24974,7 @@ "format": "\"%d\"" }, "funcname": "SliderInt", - "location": "imgui", + "location": "imgui:497", "namespace": "ImGui", "ov_cimguiname": "igSliderInt", "ret": "bool", @@ -25001,7 +25019,7 @@ "format": "\"%d\"" }, "funcname": "SliderInt2", - "location": "imgui", + "location": "imgui:498", "namespace": "ImGui", "ov_cimguiname": "igSliderInt2", "ret": "bool", @@ -25046,7 +25064,7 @@ "format": "\"%d\"" }, "funcname": "SliderInt3", - "location": "imgui", + "location": "imgui:499", "namespace": "ImGui", "ov_cimguiname": "igSliderInt3", "ret": "bool", @@ -25091,7 +25109,7 @@ "format": "\"%d\"" }, "funcname": "SliderInt4", - "location": "imgui", + "location": "imgui:500", "namespace": "ImGui", "ov_cimguiname": "igSliderInt4", "ret": "bool", @@ -25137,10 +25155,10 @@ "cimguiname": "igSliderScalar", "defaults": { "flags": "0", - "format": "((void*)0)" + "format": "NULL" }, "funcname": "SliderScalar", - "location": "imgui", + "location": "imgui:501", "namespace": "ImGui", "ov_cimguiname": "igSliderScalar", "ret": "bool", @@ -25190,10 +25208,10 @@ "cimguiname": "igSliderScalarN", "defaults": { "flags": "0", - "format": "((void*)0)" + "format": "NULL" }, "funcname": "SliderScalarN", - "location": "imgui", + "location": "imgui:502", "namespace": "ImGui", "ov_cimguiname": "igSliderScalarN", "ret": "bool", @@ -25215,7 +25233,7 @@ "cimguiname": "igSmallButton", "defaults": [], "funcname": "SmallButton", - "location": "imgui", + "location": "imgui:441", "namespace": "ImGui", "ov_cimguiname": "igSmallButton", "ret": "bool", @@ -25232,7 +25250,7 @@ "cimguiname": "igSpacing", "defaults": [], "funcname": "Spacing", - "location": "imgui", + "location": "imgui:385", "namespace": "ImGui", "ov_cimguiname": "igSpacing", "ret": "void", @@ -25289,7 +25307,7 @@ "hover_visibility_delay": "0.0f" }, "funcname": "SplitterBehavior", - "location": "internal", + "location": "imgui_internal:1983", "namespace": "ImGui", "ov_cimguiname": "igSplitterBehavior", "ret": "bool", @@ -25311,7 +25329,7 @@ "cimguiname": "igStartMouseMovingWindow", "defaults": [], "funcname": "StartMouseMovingWindow", - "location": "internal", + "location": "imgui_internal:1807", "namespace": "ImGui", "ov_cimguiname": "igStartMouseMovingWindow", "ret": "void", @@ -25332,10 +25350,10 @@ "call_args": "(dst)", "cimguiname": "igStyleColorsClassic", "defaults": { - "dst": "((void*)0)" + "dst": "NULL" }, "funcname": "StyleColorsClassic", - "location": "imgui", + "location": "imgui:269", "namespace": "ImGui", "ov_cimguiname": "igStyleColorsClassic", "ret": "void", @@ -25356,10 +25374,10 @@ "call_args": "(dst)", "cimguiname": "igStyleColorsDark", "defaults": { - "dst": "((void*)0)" + "dst": "NULL" }, "funcname": "StyleColorsDark", - "location": "imgui", + "location": "imgui:268", "namespace": "ImGui", "ov_cimguiname": "igStyleColorsDark", "ret": "void", @@ -25380,10 +25398,10 @@ "call_args": "(dst)", "cimguiname": "igStyleColorsLight", "defaults": { - "dst": "((void*)0)" + "dst": "NULL" }, "funcname": "StyleColorsLight", - "location": "imgui", + "location": "imgui:270", "namespace": "ImGui", "ov_cimguiname": "igStyleColorsLight", "ret": "void", @@ -25409,7 +25427,7 @@ "cimguiname": "igTabBarCloseTab", "defaults": [], "funcname": "TabBarCloseTab", - "location": "internal", + "location": "imgui_internal:1928", "namespace": "ImGui", "ov_cimguiname": "igTabBarCloseTab", "ret": "void", @@ -25435,7 +25453,7 @@ "cimguiname": "igTabBarFindTabByID", "defaults": [], "funcname": "TabBarFindTabByID", - "location": "internal", + "location": "imgui_internal:1926", "namespace": "ImGui", "ov_cimguiname": "igTabBarFindTabByID", "ret": "ImGuiTabItem*", @@ -25465,7 +25483,7 @@ "cimguiname": "igTabBarQueueChangeTabOrder", "defaults": [], "funcname": "TabBarQueueChangeTabOrder", - "location": "internal", + "location": "imgui_internal:1929", "namespace": "ImGui", "ov_cimguiname": "igTabBarQueueChangeTabOrder", "ret": "void", @@ -25491,7 +25509,7 @@ "cimguiname": "igTabBarRemoveTab", "defaults": [], "funcname": "TabBarRemoveTab", - "location": "internal", + "location": "imgui_internal:1927", "namespace": "ImGui", "ov_cimguiname": "igTabBarRemoveTab", "ret": "void", @@ -25525,7 +25543,7 @@ "cimguiname": "igTabItemBackground", "defaults": [], "funcname": "TabItemBackground", - "location": "internal", + "location": "imgui_internal:1932", "namespace": "ImGui", "ov_cimguiname": "igTabItemBackground", "ret": "void", @@ -25555,7 +25573,7 @@ "cimguiname": "igTabItemCalcSize", "defaults": [], "funcname": "TabItemCalcSize", - "location": "internal", + "location": "imgui_internal:1931", "namespace": "ImGui", "nonUDT": 1, "ov_cimguiname": "igTabItemCalcSize", @@ -25590,7 +25608,7 @@ "cimguiname": "igTabItemEx", "defaults": [], "funcname": "TabItemEx", - "location": "internal", + "location": "imgui_internal:1930", "namespace": "ImGui", "ov_cimguiname": "igTabItemEx", "ret": "bool", @@ -25640,7 +25658,7 @@ "cimguiname": "igTabItemLabelAndCloseButton", "defaults": [], "funcname": "TabItemLabelAndCloseButton", - "location": "internal", + "location": "imgui_internal:1933", "namespace": "ImGui", "ov_cimguiname": "igTabItemLabelAndCloseButton", "ret": "bool", @@ -25662,7 +25680,7 @@ "cimguiname": "igTempInputIsActive", "defaults": [], "funcname": "TempInputIsActive", - "location": "internal", + "location": "imgui_internal:2008", "namespace": "ImGui", "ov_cimguiname": "igTempInputIsActive", "ret": "bool", @@ -25711,11 +25729,11 @@ "call_args": "(bb,id,label,data_type,p_data,format,p_clamp_min,p_clamp_max)", "cimguiname": "igTempInputScalar", "defaults": { - "p_clamp_max": "((void*)0)", - "p_clamp_min": "((void*)0)" + "p_clamp_max": "NULL", + "p_clamp_min": "NULL" }, "funcname": "TempInputScalar", - "location": "internal", + "location": "imgui_internal:2007", "namespace": "ImGui", "ov_cimguiname": "igTempInputScalar", "ret": "bool", @@ -25757,7 +25775,7 @@ "cimguiname": "igTempInputText", "defaults": [], "funcname": "TempInputText", - "location": "internal", + "location": "imgui_internal:2006", "namespace": "ImGui", "ov_cimguiname": "igTempInputText", "ret": "bool", @@ -25784,7 +25802,7 @@ "defaults": [], "funcname": "Text", "isvararg": "...)", - "location": "imgui", + "location": "imgui:424", "namespace": "ImGui", "ov_cimguiname": "igText", "ret": "void", @@ -25815,7 +25833,7 @@ "defaults": [], "funcname": "TextColored", "isvararg": "...)", - "location": "imgui", + "location": "imgui:426", "namespace": "ImGui", "ov_cimguiname": "igTextColored", "ret": "void", @@ -25845,7 +25863,7 @@ "cimguiname": "igTextColoredV", "defaults": [], "funcname": "TextColoredV", - "location": "imgui", + "location": "imgui:427", "namespace": "ImGui", "ov_cimguiname": "igTextColoredV", "ret": "void", @@ -25872,7 +25890,7 @@ "defaults": [], "funcname": "TextDisabled", "isvararg": "...)", - "location": "imgui", + "location": "imgui:428", "namespace": "ImGui", "ov_cimguiname": "igTextDisabled", "ret": "void", @@ -25898,7 +25916,7 @@ "cimguiname": "igTextDisabledV", "defaults": [], "funcname": "TextDisabledV", - "location": "imgui", + "location": "imgui:429", "namespace": "ImGui", "ov_cimguiname": "igTextDisabledV", "ret": "void", @@ -25928,10 +25946,10 @@ "cimguiname": "igTextEx", "defaults": { "flags": "0", - "text_end": "((void*)0)" + "text_end": "NULL" }, "funcname": "TextEx", - "location": "internal", + "location": "imgui_internal:1966", "namespace": "ImGui", "ov_cimguiname": "igTextEx", "ret": "void", @@ -25956,10 +25974,10 @@ "call_args": "(text,text_end)", "cimguiname": "igTextUnformatted", "defaults": { - "text_end": "((void*)0)" + "text_end": "NULL" }, "funcname": "TextUnformatted", - "location": "imgui", + "location": "imgui:423", "namespace": "ImGui", "ov_cimguiname": "igTextUnformatted", "ret": "void", @@ -25985,7 +26003,7 @@ "cimguiname": "igTextV", "defaults": [], "funcname": "TextV", - "location": "imgui", + "location": "imgui:425", "namespace": "ImGui", "ov_cimguiname": "igTextV", "ret": "void", @@ -26012,7 +26030,7 @@ "defaults": [], "funcname": "TextWrapped", "isvararg": "...)", - "location": "imgui", + "location": "imgui:430", "namespace": "ImGui", "ov_cimguiname": "igTextWrapped", "ret": "void", @@ -26038,7 +26056,7 @@ "cimguiname": "igTextWrappedV", "defaults": [], "funcname": "TextWrappedV", - "location": "imgui", + "location": "imgui:431", "namespace": "ImGui", "ov_cimguiname": "igTextWrappedV", "ret": "void", @@ -26060,7 +26078,7 @@ "cimguiname": "igTreeNode", "defaults": [], "funcname": "TreeNode", - "location": "imgui", + "location": "imgui:537", "namespace": "ImGui", "ov_cimguiname": "igTreeNodeStr", "ret": "bool", @@ -26089,7 +26107,7 @@ "defaults": [], "funcname": "TreeNode", "isvararg": "...)", - "location": "imgui", + "location": "imgui:538", "namespace": "ImGui", "ov_cimguiname": "igTreeNodeStrStr", "ret": "bool", @@ -26118,7 +26136,7 @@ "defaults": [], "funcname": "TreeNode", "isvararg": "...)", - "location": "imgui", + "location": "imgui:539", "namespace": "ImGui", "ov_cimguiname": "igTreeNodePtr", "ret": "bool", @@ -26151,10 +26169,10 @@ "call_args": "(id,flags,label,label_end)", "cimguiname": "igTreeNodeBehavior", "defaults": { - "label_end": "((void*)0)" + "label_end": "NULL" }, "funcname": "TreeNodeBehavior", - "location": "internal", + "location": "imgui_internal:1984", "namespace": "ImGui", "ov_cimguiname": "igTreeNodeBehavior", "ret": "bool", @@ -26182,7 +26200,7 @@ "flags": "0" }, "funcname": "TreeNodeBehaviorIsOpen", - "location": "internal", + "location": "imgui_internal:1985", "namespace": "ImGui", "ov_cimguiname": "igTreeNodeBehaviorIsOpen", "ret": "bool", @@ -26210,7 +26228,7 @@ "flags": "0" }, "funcname": "TreeNodeEx", - "location": "imgui", + "location": "imgui:542", "namespace": "ImGui", "ov_cimguiname": "igTreeNodeExStr", "ret": "bool", @@ -26243,7 +26261,7 @@ "defaults": [], "funcname": "TreeNodeEx", "isvararg": "...)", - "location": "imgui", + "location": "imgui:543", "namespace": "ImGui", "ov_cimguiname": "igTreeNodeExStrStr", "ret": "bool", @@ -26276,7 +26294,7 @@ "defaults": [], "funcname": "TreeNodeEx", "isvararg": "...)", - "location": "imgui", + "location": "imgui:544", "namespace": "ImGui", "ov_cimguiname": "igTreeNodeExPtr", "ret": "bool", @@ -26310,7 +26328,7 @@ "cimguiname": "igTreeNodeExV", "defaults": [], "funcname": "TreeNodeExV", - "location": "imgui", + "location": "imgui:545", "namespace": "ImGui", "ov_cimguiname": "igTreeNodeExVStr", "ret": "bool", @@ -26342,7 +26360,7 @@ "cimguiname": "igTreeNodeExV", "defaults": [], "funcname": "TreeNodeExV", - "location": "imgui", + "location": "imgui:546", "namespace": "ImGui", "ov_cimguiname": "igTreeNodeExVPtr", "ret": "bool", @@ -26372,7 +26390,7 @@ "cimguiname": "igTreeNodeV", "defaults": [], "funcname": "TreeNodeV", - "location": "imgui", + "location": "imgui:540", "namespace": "ImGui", "ov_cimguiname": "igTreeNodeVStr", "ret": "bool", @@ -26400,7 +26418,7 @@ "cimguiname": "igTreeNodeV", "defaults": [], "funcname": "TreeNodeV", - "location": "imgui", + "location": "imgui:541", "namespace": "ImGui", "ov_cimguiname": "igTreeNodeVPtr", "ret": "bool", @@ -26417,7 +26435,7 @@ "cimguiname": "igTreePop", "defaults": [], "funcname": "TreePop", - "location": "imgui", + "location": "imgui:549", "namespace": "ImGui", "ov_cimguiname": "igTreePop", "ret": "void", @@ -26439,7 +26457,7 @@ "cimguiname": "igTreePush", "defaults": [], "funcname": "TreePush", - "location": "imgui", + "location": "imgui:547", "namespace": "ImGui", "ov_cimguiname": "igTreePushStr", "ret": "void", @@ -26458,10 +26476,10 @@ "call_args": "(ptr_id)", "cimguiname": "igTreePush", "defaults": { - "ptr_id": "((void*)0)" + "ptr_id": "NULL" }, "funcname": "TreePush", - "location": "imgui", + "location": "imgui:548", "namespace": "ImGui", "ov_cimguiname": "igTreePushPtr", "ret": "void", @@ -26483,7 +26501,7 @@ "cimguiname": "igTreePushOverrideID", "defaults": [], "funcname": "TreePushOverrideID", - "location": "internal", + "location": "imgui_internal:1986", "namespace": "ImGui", "ov_cimguiname": "igTreePushOverrideID", "ret": "void", @@ -26507,7 +26525,7 @@ "indent_w": "0.0f" }, "funcname": "Unindent", - "location": "imgui", + "location": "imgui:388", "namespace": "ImGui", "ov_cimguiname": "igUnindent", "ret": "void", @@ -26524,7 +26542,7 @@ "cimguiname": "igUpdateHoveredWindowAndCaptureFlags", "defaults": [], "funcname": "UpdateHoveredWindowAndCaptureFlags", - "location": "internal", + "location": "imgui_internal:1806", "namespace": "ImGui", "ov_cimguiname": "igUpdateHoveredWindowAndCaptureFlags", "ret": "void", @@ -26541,7 +26559,7 @@ "cimguiname": "igUpdateMouseMovingWindowEndFrame", "defaults": [], "funcname": "UpdateMouseMovingWindowEndFrame", - "location": "internal", + "location": "imgui_internal:1809", "namespace": "ImGui", "ov_cimguiname": "igUpdateMouseMovingWindowEndFrame", "ret": "void", @@ -26558,7 +26576,7 @@ "cimguiname": "igUpdateMouseMovingWindowNewFrame", "defaults": [], "funcname": "UpdateMouseMovingWindowNewFrame", - "location": "internal", + "location": "imgui_internal:1808", "namespace": "ImGui", "ov_cimguiname": "igUpdateMouseMovingWindowNewFrame", "ret": "void", @@ -26588,7 +26606,7 @@ "cimguiname": "igUpdateWindowParentAndRootLinks", "defaults": [], "funcname": "UpdateWindowParentAndRootLinks", - "location": "internal", + "location": "imgui_internal:1779", "namespace": "ImGui", "ov_cimguiname": "igUpdateWindowParentAndRootLinks", "ret": "void", @@ -26637,7 +26655,7 @@ "format": "\"%.3f\"" }, "funcname": "VSliderFloat", - "location": "imgui", + "location": "imgui:503", "namespace": "ImGui", "ov_cimguiname": "igVSliderFloat", "ret": "bool", @@ -26686,7 +26704,7 @@ "format": "\"%d\"" }, "funcname": "VSliderInt", - "location": "imgui", + "location": "imgui:504", "namespace": "ImGui", "ov_cimguiname": "igVSliderInt", "ret": "bool", @@ -26736,10 +26754,10 @@ "cimguiname": "igVSliderScalar", "defaults": { "flags": "0", - "format": "((void*)0)" + "format": "NULL" }, "funcname": "VSliderScalar", - "location": "imgui", + "location": "imgui:505", "namespace": "ImGui", "ov_cimguiname": "igVSliderScalar", "ret": "bool", @@ -26765,7 +26783,7 @@ "cimguiname": "igValue", "defaults": [], "funcname": "Value", - "location": "imgui", + "location": "imgui:577", "namespace": "ImGui", "ov_cimguiname": "igValueBool", "ret": "void", @@ -26789,7 +26807,7 @@ "cimguiname": "igValue", "defaults": [], "funcname": "Value", - "location": "imgui", + "location": "imgui:578", "namespace": "ImGui", "ov_cimguiname": "igValueInt", "ret": "void", @@ -26813,7 +26831,7 @@ "cimguiname": "igValue", "defaults": [], "funcname": "Value", - "location": "imgui", + "location": "imgui:579", "namespace": "ImGui", "ov_cimguiname": "igValueUint", "ret": "void", @@ -26840,10 +26858,10 @@ "call_args": "(prefix,v,float_format)", "cimguiname": "igValue", "defaults": { - "float_format": "((void*)0)" + "float_format": "NULL" }, "funcname": "Value", - "location": "imgui", + "location": "imgui:580", "namespace": "ImGui", "ov_cimguiname": "igValueFloat", "ret": "void", diff --git a/generator/output/definitions.lua b/generator/output/definitions.lua index b27e64a..7e1489e 100644 --- a/generator/output/definitions.lua +++ b/generator/output/definitions.lua @@ -11,7 +11,7 @@ defs["ImBitVector_Clear"][1]["call_args"] = "()" defs["ImBitVector_Clear"][1]["cimguiname"] = "ImBitVector_Clear" defs["ImBitVector_Clear"][1]["defaults"] = {} defs["ImBitVector_Clear"][1]["funcname"] = "Clear" -defs["ImBitVector_Clear"][1]["location"] = "internal" +defs["ImBitVector_Clear"][1]["location"] = "imgui_internal:472" defs["ImBitVector_Clear"][1]["ov_cimguiname"] = "ImBitVector_Clear" defs["ImBitVector_Clear"][1]["ret"] = "void" defs["ImBitVector_Clear"][1]["signature"] = "()" @@ -32,7 +32,7 @@ defs["ImBitVector_ClearBit"][1]["call_args"] = "(n)" defs["ImBitVector_ClearBit"][1]["cimguiname"] = "ImBitVector_ClearBit" defs["ImBitVector_ClearBit"][1]["defaults"] = {} defs["ImBitVector_ClearBit"][1]["funcname"] = "ClearBit" -defs["ImBitVector_ClearBit"][1]["location"] = "internal" +defs["ImBitVector_ClearBit"][1]["location"] = "imgui_internal:475" defs["ImBitVector_ClearBit"][1]["ov_cimguiname"] = "ImBitVector_ClearBit" defs["ImBitVector_ClearBit"][1]["ret"] = "void" defs["ImBitVector_ClearBit"][1]["signature"] = "(int)" @@ -53,7 +53,7 @@ defs["ImBitVector_Create"][1]["call_args"] = "(sz)" defs["ImBitVector_Create"][1]["cimguiname"] = "ImBitVector_Create" defs["ImBitVector_Create"][1]["defaults"] = {} defs["ImBitVector_Create"][1]["funcname"] = "Create" -defs["ImBitVector_Create"][1]["location"] = "internal" +defs["ImBitVector_Create"][1]["location"] = "imgui_internal:471" defs["ImBitVector_Create"][1]["ov_cimguiname"] = "ImBitVector_Create" defs["ImBitVector_Create"][1]["ret"] = "void" defs["ImBitVector_Create"][1]["signature"] = "(int)" @@ -74,7 +74,7 @@ defs["ImBitVector_SetBit"][1]["call_args"] = "(n)" defs["ImBitVector_SetBit"][1]["cimguiname"] = "ImBitVector_SetBit" defs["ImBitVector_SetBit"][1]["defaults"] = {} defs["ImBitVector_SetBit"][1]["funcname"] = "SetBit" -defs["ImBitVector_SetBit"][1]["location"] = "internal" +defs["ImBitVector_SetBit"][1]["location"] = "imgui_internal:474" defs["ImBitVector_SetBit"][1]["ov_cimguiname"] = "ImBitVector_SetBit" defs["ImBitVector_SetBit"][1]["ret"] = "void" defs["ImBitVector_SetBit"][1]["signature"] = "(int)" @@ -95,7 +95,7 @@ defs["ImBitVector_TestBit"][1]["call_args"] = "(n)" defs["ImBitVector_TestBit"][1]["cimguiname"] = "ImBitVector_TestBit" defs["ImBitVector_TestBit"][1]["defaults"] = {} defs["ImBitVector_TestBit"][1]["funcname"] = "TestBit" -defs["ImBitVector_TestBit"][1]["location"] = "internal" +defs["ImBitVector_TestBit"][1]["location"] = "imgui_internal:473" defs["ImBitVector_TestBit"][1]["ov_cimguiname"] = "ImBitVector_TestBit" defs["ImBitVector_TestBit"][1]["ret"] = "bool" defs["ImBitVector_TestBit"][1]["signature"] = "(int)const" @@ -116,7 +116,7 @@ defs["ImChunkStream_alloc_chunk"][1]["call_args"] = "(sz)" defs["ImChunkStream_alloc_chunk"][1]["cimguiname"] = "ImChunkStream_alloc_chunk" defs["ImChunkStream_alloc_chunk"][1]["defaults"] = {} defs["ImChunkStream_alloc_chunk"][1]["funcname"] = "alloc_chunk" -defs["ImChunkStream_alloc_chunk"][1]["location"] = "internal" +defs["ImChunkStream_alloc_chunk"][1]["location"] = "imgui_internal:517" defs["ImChunkStream_alloc_chunk"][1]["ov_cimguiname"] = "ImChunkStream_alloc_chunk" defs["ImChunkStream_alloc_chunk"][1]["ret"] = "T*" defs["ImChunkStream_alloc_chunk"][1]["signature"] = "(size_t)" @@ -135,7 +135,7 @@ defs["ImChunkStream_begin"][1]["call_args"] = "()" defs["ImChunkStream_begin"][1]["cimguiname"] = "ImChunkStream_begin" defs["ImChunkStream_begin"][1]["defaults"] = {} defs["ImChunkStream_begin"][1]["funcname"] = "begin" -defs["ImChunkStream_begin"][1]["location"] = "internal" +defs["ImChunkStream_begin"][1]["location"] = "imgui_internal:518" defs["ImChunkStream_begin"][1]["ov_cimguiname"] = "ImChunkStream_begin" defs["ImChunkStream_begin"][1]["ret"] = "T*" defs["ImChunkStream_begin"][1]["signature"] = "()" @@ -157,7 +157,7 @@ defs["ImChunkStream_chunk_size"][1]["call_args"] = "(p)" defs["ImChunkStream_chunk_size"][1]["cimguiname"] = "ImChunkStream_chunk_size" defs["ImChunkStream_chunk_size"][1]["defaults"] = {} defs["ImChunkStream_chunk_size"][1]["funcname"] = "chunk_size" -defs["ImChunkStream_chunk_size"][1]["location"] = "internal" +defs["ImChunkStream_chunk_size"][1]["location"] = "imgui_internal:520" defs["ImChunkStream_chunk_size"][1]["ov_cimguiname"] = "ImChunkStream_chunk_size" defs["ImChunkStream_chunk_size"][1]["ret"] = "int" defs["ImChunkStream_chunk_size"][1]["signature"] = "(const T*)" @@ -176,7 +176,7 @@ defs["ImChunkStream_clear"][1]["call_args"] = "()" defs["ImChunkStream_clear"][1]["cimguiname"] = "ImChunkStream_clear" defs["ImChunkStream_clear"][1]["defaults"] = {} defs["ImChunkStream_clear"][1]["funcname"] = "clear" -defs["ImChunkStream_clear"][1]["location"] = "internal" +defs["ImChunkStream_clear"][1]["location"] = "imgui_internal:514" defs["ImChunkStream_clear"][1]["ov_cimguiname"] = "ImChunkStream_clear" defs["ImChunkStream_clear"][1]["ret"] = "void" defs["ImChunkStream_clear"][1]["signature"] = "()" @@ -195,7 +195,7 @@ defs["ImChunkStream_empty"][1]["call_args"] = "()" defs["ImChunkStream_empty"][1]["cimguiname"] = "ImChunkStream_empty" defs["ImChunkStream_empty"][1]["defaults"] = {} defs["ImChunkStream_empty"][1]["funcname"] = "empty" -defs["ImChunkStream_empty"][1]["location"] = "internal" +defs["ImChunkStream_empty"][1]["location"] = "imgui_internal:515" defs["ImChunkStream_empty"][1]["ov_cimguiname"] = "ImChunkStream_empty" defs["ImChunkStream_empty"][1]["ret"] = "bool" defs["ImChunkStream_empty"][1]["signature"] = "()const" @@ -214,7 +214,7 @@ defs["ImChunkStream_end"][1]["call_args"] = "()" defs["ImChunkStream_end"][1]["cimguiname"] = "ImChunkStream_end" defs["ImChunkStream_end"][1]["defaults"] = {} defs["ImChunkStream_end"][1]["funcname"] = "end" -defs["ImChunkStream_end"][1]["location"] = "internal" +defs["ImChunkStream_end"][1]["location"] = "imgui_internal:521" defs["ImChunkStream_end"][1]["ov_cimguiname"] = "ImChunkStream_end" defs["ImChunkStream_end"][1]["ret"] = "T*" defs["ImChunkStream_end"][1]["signature"] = "()" @@ -236,7 +236,7 @@ defs["ImChunkStream_next_chunk"][1]["call_args"] = "(p)" defs["ImChunkStream_next_chunk"][1]["cimguiname"] = "ImChunkStream_next_chunk" defs["ImChunkStream_next_chunk"][1]["defaults"] = {} defs["ImChunkStream_next_chunk"][1]["funcname"] = "next_chunk" -defs["ImChunkStream_next_chunk"][1]["location"] = "internal" +defs["ImChunkStream_next_chunk"][1]["location"] = "imgui_internal:519" defs["ImChunkStream_next_chunk"][1]["ov_cimguiname"] = "ImChunkStream_next_chunk" defs["ImChunkStream_next_chunk"][1]["ret"] = "T*" defs["ImChunkStream_next_chunk"][1]["signature"] = "(T*)" @@ -258,7 +258,7 @@ defs["ImChunkStream_offset_from_ptr"][1]["call_args"] = "(p)" defs["ImChunkStream_offset_from_ptr"][1]["cimguiname"] = "ImChunkStream_offset_from_ptr" defs["ImChunkStream_offset_from_ptr"][1]["defaults"] = {} defs["ImChunkStream_offset_from_ptr"][1]["funcname"] = "offset_from_ptr" -defs["ImChunkStream_offset_from_ptr"][1]["location"] = "internal" +defs["ImChunkStream_offset_from_ptr"][1]["location"] = "imgui_internal:522" defs["ImChunkStream_offset_from_ptr"][1]["ov_cimguiname"] = "ImChunkStream_offset_from_ptr" defs["ImChunkStream_offset_from_ptr"][1]["ret"] = "int" defs["ImChunkStream_offset_from_ptr"][1]["signature"] = "(const T*)" @@ -280,7 +280,7 @@ defs["ImChunkStream_ptr_from_offset"][1]["call_args"] = "(off)" defs["ImChunkStream_ptr_from_offset"][1]["cimguiname"] = "ImChunkStream_ptr_from_offset" defs["ImChunkStream_ptr_from_offset"][1]["defaults"] = {} defs["ImChunkStream_ptr_from_offset"][1]["funcname"] = "ptr_from_offset" -defs["ImChunkStream_ptr_from_offset"][1]["location"] = "internal" +defs["ImChunkStream_ptr_from_offset"][1]["location"] = "imgui_internal:523" defs["ImChunkStream_ptr_from_offset"][1]["ov_cimguiname"] = "ImChunkStream_ptr_from_offset" defs["ImChunkStream_ptr_from_offset"][1]["ret"] = "T*" defs["ImChunkStream_ptr_from_offset"][1]["signature"] = "(int)" @@ -299,7 +299,7 @@ defs["ImChunkStream_size"][1]["call_args"] = "()" defs["ImChunkStream_size"][1]["cimguiname"] = "ImChunkStream_size" defs["ImChunkStream_size"][1]["defaults"] = {} defs["ImChunkStream_size"][1]["funcname"] = "size" -defs["ImChunkStream_size"][1]["location"] = "internal" +defs["ImChunkStream_size"][1]["location"] = "imgui_internal:516" defs["ImChunkStream_size"][1]["ov_cimguiname"] = "ImChunkStream_size" defs["ImChunkStream_size"][1]["ret"] = "int" defs["ImChunkStream_size"][1]["signature"] = "()const" @@ -332,7 +332,7 @@ defs["ImColor_HSV"][1]["defaults"] = {} defs["ImColor_HSV"][1]["defaults"]["a"] = "1.0f" defs["ImColor_HSV"][1]["funcname"] = "HSV" defs["ImColor_HSV"][1]["is_static_function"] = true -defs["ImColor_HSV"][1]["location"] = "imgui" +defs["ImColor_HSV"][1]["location"] = "imgui:1941" defs["ImColor_HSV"][1]["nonUDT"] = 1 defs["ImColor_HSV"][1]["ov_cimguiname"] = "ImColor_HSV" defs["ImColor_HSV"][1]["ret"] = "void" @@ -349,7 +349,7 @@ defs["ImColor_ImColor"][1]["cimguiname"] = "ImColor_ImColor" defs["ImColor_ImColor"][1]["constructor"] = true defs["ImColor_ImColor"][1]["defaults"] = {} defs["ImColor_ImColor"][1]["funcname"] = "ImColor" -defs["ImColor_ImColor"][1]["location"] = "imgui" +defs["ImColor_ImColor"][1]["location"] = "imgui:1931" defs["ImColor_ImColor"][1]["ov_cimguiname"] = "ImColor_ImColorNil" defs["ImColor_ImColor"][1]["signature"] = "()" defs["ImColor_ImColor"][1]["stname"] = "ImColor" @@ -375,7 +375,7 @@ defs["ImColor_ImColor"][2]["constructor"] = true defs["ImColor_ImColor"][2]["defaults"] = {} defs["ImColor_ImColor"][2]["defaults"]["a"] = "255" defs["ImColor_ImColor"][2]["funcname"] = "ImColor" -defs["ImColor_ImColor"][2]["location"] = "imgui" +defs["ImColor_ImColor"][2]["location"] = "imgui:1932" defs["ImColor_ImColor"][2]["ov_cimguiname"] = "ImColor_ImColorInt" defs["ImColor_ImColor"][2]["signature"] = "(int,int,int,int)" defs["ImColor_ImColor"][2]["stname"] = "ImColor" @@ -391,7 +391,7 @@ defs["ImColor_ImColor"][3]["cimguiname"] = "ImColor_ImColor" defs["ImColor_ImColor"][3]["constructor"] = true defs["ImColor_ImColor"][3]["defaults"] = {} defs["ImColor_ImColor"][3]["funcname"] = "ImColor" -defs["ImColor_ImColor"][3]["location"] = "imgui" +defs["ImColor_ImColor"][3]["location"] = "imgui:1933" defs["ImColor_ImColor"][3]["ov_cimguiname"] = "ImColor_ImColorU32" defs["ImColor_ImColor"][3]["signature"] = "(ImU32)" defs["ImColor_ImColor"][3]["stname"] = "ImColor" @@ -417,7 +417,7 @@ defs["ImColor_ImColor"][4]["constructor"] = true defs["ImColor_ImColor"][4]["defaults"] = {} defs["ImColor_ImColor"][4]["defaults"]["a"] = "1.0f" defs["ImColor_ImColor"][4]["funcname"] = "ImColor" -defs["ImColor_ImColor"][4]["location"] = "imgui" +defs["ImColor_ImColor"][4]["location"] = "imgui:1934" defs["ImColor_ImColor"][4]["ov_cimguiname"] = "ImColor_ImColorFloat" defs["ImColor_ImColor"][4]["signature"] = "(float,float,float,float)" defs["ImColor_ImColor"][4]["stname"] = "ImColor" @@ -433,7 +433,7 @@ defs["ImColor_ImColor"][5]["cimguiname"] = "ImColor_ImColor" defs["ImColor_ImColor"][5]["constructor"] = true defs["ImColor_ImColor"][5]["defaults"] = {} defs["ImColor_ImColor"][5]["funcname"] = "ImColor" -defs["ImColor_ImColor"][5]["location"] = "imgui" +defs["ImColor_ImColor"][5]["location"] = "imgui:1935" defs["ImColor_ImColor"][5]["ov_cimguiname"] = "ImColor_ImColorVec4" defs["ImColor_ImColor"][5]["signature"] = "(const ImVec4)" defs["ImColor_ImColor"][5]["stname"] = "ImColor" @@ -467,7 +467,7 @@ defs["ImColor_SetHSV"][1]["cimguiname"] = "ImColor_SetHSV" defs["ImColor_SetHSV"][1]["defaults"] = {} defs["ImColor_SetHSV"][1]["defaults"]["a"] = "1.0f" defs["ImColor_SetHSV"][1]["funcname"] = "SetHSV" -defs["ImColor_SetHSV"][1]["location"] = "imgui" +defs["ImColor_SetHSV"][1]["location"] = "imgui:1940" defs["ImColor_SetHSV"][1]["ov_cimguiname"] = "ImColor_SetHSV" defs["ImColor_SetHSV"][1]["ret"] = "void" defs["ImColor_SetHSV"][1]["signature"] = "(float,float,float,float)" @@ -499,7 +499,7 @@ defs["ImDrawCmd_ImDrawCmd"][1]["cimguiname"] = "ImDrawCmd_ImDrawCmd" defs["ImDrawCmd_ImDrawCmd"][1]["constructor"] = true defs["ImDrawCmd_ImDrawCmd"][1]["defaults"] = {} defs["ImDrawCmd_ImDrawCmd"][1]["funcname"] = "ImDrawCmd" -defs["ImDrawCmd_ImDrawCmd"][1]["location"] = "imgui" +defs["ImDrawCmd_ImDrawCmd"][1]["location"] = "imgui:1986" defs["ImDrawCmd_ImDrawCmd"][1]["ov_cimguiname"] = "ImDrawCmd_ImDrawCmd" defs["ImDrawCmd_ImDrawCmd"][1]["signature"] = "()" defs["ImDrawCmd_ImDrawCmd"][1]["stname"] = "ImDrawCmd" @@ -532,7 +532,7 @@ defs["ImDrawDataBuilder_Clear"][1]["call_args"] = "()" defs["ImDrawDataBuilder_Clear"][1]["cimguiname"] = "ImDrawDataBuilder_Clear" defs["ImDrawDataBuilder_Clear"][1]["defaults"] = {} defs["ImDrawDataBuilder_Clear"][1]["funcname"] = "Clear" -defs["ImDrawDataBuilder_Clear"][1]["location"] = "internal" +defs["ImDrawDataBuilder_Clear"][1]["location"] = "imgui_internal:565" defs["ImDrawDataBuilder_Clear"][1]["ov_cimguiname"] = "ImDrawDataBuilder_Clear" defs["ImDrawDataBuilder_Clear"][1]["ret"] = "void" defs["ImDrawDataBuilder_Clear"][1]["signature"] = "()" @@ -550,7 +550,7 @@ defs["ImDrawDataBuilder_ClearFreeMemory"][1]["call_args"] = "()" defs["ImDrawDataBuilder_ClearFreeMemory"][1]["cimguiname"] = "ImDrawDataBuilder_ClearFreeMemory" defs["ImDrawDataBuilder_ClearFreeMemory"][1]["defaults"] = {} defs["ImDrawDataBuilder_ClearFreeMemory"][1]["funcname"] = "ClearFreeMemory" -defs["ImDrawDataBuilder_ClearFreeMemory"][1]["location"] = "internal" +defs["ImDrawDataBuilder_ClearFreeMemory"][1]["location"] = "imgui_internal:566" defs["ImDrawDataBuilder_ClearFreeMemory"][1]["ov_cimguiname"] = "ImDrawDataBuilder_ClearFreeMemory" defs["ImDrawDataBuilder_ClearFreeMemory"][1]["ret"] = "void" defs["ImDrawDataBuilder_ClearFreeMemory"][1]["signature"] = "()" @@ -568,7 +568,7 @@ defs["ImDrawDataBuilder_FlattenIntoSingleLayer"][1]["call_args"] = "()" defs["ImDrawDataBuilder_FlattenIntoSingleLayer"][1]["cimguiname"] = "ImDrawDataBuilder_FlattenIntoSingleLayer" defs["ImDrawDataBuilder_FlattenIntoSingleLayer"][1]["defaults"] = {} defs["ImDrawDataBuilder_FlattenIntoSingleLayer"][1]["funcname"] = "FlattenIntoSingleLayer" -defs["ImDrawDataBuilder_FlattenIntoSingleLayer"][1]["location"] = "internal" +defs["ImDrawDataBuilder_FlattenIntoSingleLayer"][1]["location"] = "imgui_internal:567" defs["ImDrawDataBuilder_FlattenIntoSingleLayer"][1]["ov_cimguiname"] = "ImDrawDataBuilder_FlattenIntoSingleLayer" defs["ImDrawDataBuilder_FlattenIntoSingleLayer"][1]["ret"] = "void" defs["ImDrawDataBuilder_FlattenIntoSingleLayer"][1]["signature"] = "()" @@ -586,7 +586,7 @@ defs["ImDrawData_Clear"][1]["call_args"] = "()" defs["ImDrawData_Clear"][1]["cimguiname"] = "ImDrawData_Clear" defs["ImDrawData_Clear"][1]["defaults"] = {} defs["ImDrawData_Clear"][1]["funcname"] = "Clear" -defs["ImDrawData_Clear"][1]["location"] = "imgui" +defs["ImDrawData_Clear"][1]["location"] = "imgui:2197" defs["ImDrawData_Clear"][1]["ov_cimguiname"] = "ImDrawData_Clear" defs["ImDrawData_Clear"][1]["ret"] = "void" defs["ImDrawData_Clear"][1]["signature"] = "()" @@ -604,7 +604,7 @@ defs["ImDrawData_DeIndexAllBuffers"][1]["call_args"] = "()" defs["ImDrawData_DeIndexAllBuffers"][1]["cimguiname"] = "ImDrawData_DeIndexAllBuffers" defs["ImDrawData_DeIndexAllBuffers"][1]["defaults"] = {} defs["ImDrawData_DeIndexAllBuffers"][1]["funcname"] = "DeIndexAllBuffers" -defs["ImDrawData_DeIndexAllBuffers"][1]["location"] = "imgui" +defs["ImDrawData_DeIndexAllBuffers"][1]["location"] = "imgui:2198" defs["ImDrawData_DeIndexAllBuffers"][1]["ov_cimguiname"] = "ImDrawData_DeIndexAllBuffers" defs["ImDrawData_DeIndexAllBuffers"][1]["ret"] = "void" defs["ImDrawData_DeIndexAllBuffers"][1]["signature"] = "()" @@ -620,7 +620,7 @@ defs["ImDrawData_ImDrawData"][1]["cimguiname"] = "ImDrawData_ImDrawData" defs["ImDrawData_ImDrawData"][1]["constructor"] = true defs["ImDrawData_ImDrawData"][1]["defaults"] = {} defs["ImDrawData_ImDrawData"][1]["funcname"] = "ImDrawData" -defs["ImDrawData_ImDrawData"][1]["location"] = "imgui" +defs["ImDrawData_ImDrawData"][1]["location"] = "imgui:2195" defs["ImDrawData_ImDrawData"][1]["ov_cimguiname"] = "ImDrawData_ImDrawData" defs["ImDrawData_ImDrawData"][1]["signature"] = "()" defs["ImDrawData_ImDrawData"][1]["stname"] = "ImDrawData" @@ -640,7 +640,7 @@ defs["ImDrawData_ScaleClipRects"][1]["call_args"] = "(fb_scale)" defs["ImDrawData_ScaleClipRects"][1]["cimguiname"] = "ImDrawData_ScaleClipRects" defs["ImDrawData_ScaleClipRects"][1]["defaults"] = {} defs["ImDrawData_ScaleClipRects"][1]["funcname"] = "ScaleClipRects" -defs["ImDrawData_ScaleClipRects"][1]["location"] = "imgui" +defs["ImDrawData_ScaleClipRects"][1]["location"] = "imgui:2199" defs["ImDrawData_ScaleClipRects"][1]["ov_cimguiname"] = "ImDrawData_ScaleClipRects" defs["ImDrawData_ScaleClipRects"][1]["ret"] = "void" defs["ImDrawData_ScaleClipRects"][1]["signature"] = "(const ImVec2)" @@ -657,7 +657,9 @@ defs["ImDrawData_destroy"][1]["call_args"] = "(self)" defs["ImDrawData_destroy"][1]["cimguiname"] = "ImDrawData_destroy" defs["ImDrawData_destroy"][1]["defaults"] = {} defs["ImDrawData_destroy"][1]["destructor"] = true +defs["ImDrawData_destroy"][1]["location"] = "imgui:2196" defs["ImDrawData_destroy"][1]["ov_cimguiname"] = "ImDrawData_destroy" +defs["ImDrawData_destroy"][1]["realdestructor"] = true defs["ImDrawData_destroy"][1]["ret"] = "void" defs["ImDrawData_destroy"][1]["signature"] = "(ImDrawData*)" defs["ImDrawData_destroy"][1]["stname"] = "ImDrawData" @@ -672,7 +674,7 @@ defs["ImDrawListSharedData_ImDrawListSharedData"][1]["cimguiname"] = "ImDrawList defs["ImDrawListSharedData_ImDrawListSharedData"][1]["constructor"] = true defs["ImDrawListSharedData_ImDrawListSharedData"][1]["defaults"] = {} defs["ImDrawListSharedData_ImDrawListSharedData"][1]["funcname"] = "ImDrawListSharedData" -defs["ImDrawListSharedData_ImDrawListSharedData"][1]["location"] = "internal" +defs["ImDrawListSharedData_ImDrawListSharedData"][1]["location"] = "imgui_internal:557" defs["ImDrawListSharedData_ImDrawListSharedData"][1]["ov_cimguiname"] = "ImDrawListSharedData_ImDrawListSharedData" defs["ImDrawListSharedData_ImDrawListSharedData"][1]["signature"] = "()" defs["ImDrawListSharedData_ImDrawListSharedData"][1]["stname"] = "ImDrawListSharedData" @@ -692,7 +694,7 @@ defs["ImDrawListSharedData_SetCircleSegmentMaxError"][1]["call_args"] = "(max_er defs["ImDrawListSharedData_SetCircleSegmentMaxError"][1]["cimguiname"] = "ImDrawListSharedData_SetCircleSegmentMaxError" defs["ImDrawListSharedData_SetCircleSegmentMaxError"][1]["defaults"] = {} defs["ImDrawListSharedData_SetCircleSegmentMaxError"][1]["funcname"] = "SetCircleSegmentMaxError" -defs["ImDrawListSharedData_SetCircleSegmentMaxError"][1]["location"] = "internal" +defs["ImDrawListSharedData_SetCircleSegmentMaxError"][1]["location"] = "imgui_internal:558" defs["ImDrawListSharedData_SetCircleSegmentMaxError"][1]["ov_cimguiname"] = "ImDrawListSharedData_SetCircleSegmentMaxError" defs["ImDrawListSharedData_SetCircleSegmentMaxError"][1]["ret"] = "void" defs["ImDrawListSharedData_SetCircleSegmentMaxError"][1]["signature"] = "(float)" @@ -726,7 +728,7 @@ defs["ImDrawListSplitter_Clear"][1]["call_args"] = "()" defs["ImDrawListSplitter_Clear"][1]["cimguiname"] = "ImDrawListSplitter_Clear" defs["ImDrawListSplitter_Clear"][1]["defaults"] = {} defs["ImDrawListSplitter_Clear"][1]["funcname"] = "Clear" -defs["ImDrawListSplitter_Clear"][1]["location"] = "imgui" +defs["ImDrawListSplitter_Clear"][1]["location"] = "imgui:2029" defs["ImDrawListSplitter_Clear"][1]["ov_cimguiname"] = "ImDrawListSplitter_Clear" defs["ImDrawListSplitter_Clear"][1]["ret"] = "void" defs["ImDrawListSplitter_Clear"][1]["signature"] = "()" @@ -744,7 +746,7 @@ defs["ImDrawListSplitter_ClearFreeMemory"][1]["call_args"] = "()" defs["ImDrawListSplitter_ClearFreeMemory"][1]["cimguiname"] = "ImDrawListSplitter_ClearFreeMemory" defs["ImDrawListSplitter_ClearFreeMemory"][1]["defaults"] = {} defs["ImDrawListSplitter_ClearFreeMemory"][1]["funcname"] = "ClearFreeMemory" -defs["ImDrawListSplitter_ClearFreeMemory"][1]["location"] = "imgui" +defs["ImDrawListSplitter_ClearFreeMemory"][1]["location"] = "imgui:2030" defs["ImDrawListSplitter_ClearFreeMemory"][1]["ov_cimguiname"] = "ImDrawListSplitter_ClearFreeMemory" defs["ImDrawListSplitter_ClearFreeMemory"][1]["ret"] = "void" defs["ImDrawListSplitter_ClearFreeMemory"][1]["signature"] = "()" @@ -760,7 +762,7 @@ defs["ImDrawListSplitter_ImDrawListSplitter"][1]["cimguiname"] = "ImDrawListSpli defs["ImDrawListSplitter_ImDrawListSplitter"][1]["constructor"] = true defs["ImDrawListSplitter_ImDrawListSplitter"][1]["defaults"] = {} defs["ImDrawListSplitter_ImDrawListSplitter"][1]["funcname"] = "ImDrawListSplitter" -defs["ImDrawListSplitter_ImDrawListSplitter"][1]["location"] = "imgui" +defs["ImDrawListSplitter_ImDrawListSplitter"][1]["location"] = "imgui:2027" defs["ImDrawListSplitter_ImDrawListSplitter"][1]["ov_cimguiname"] = "ImDrawListSplitter_ImDrawListSplitter" defs["ImDrawListSplitter_ImDrawListSplitter"][1]["signature"] = "()" defs["ImDrawListSplitter_ImDrawListSplitter"][1]["stname"] = "ImDrawListSplitter" @@ -780,7 +782,7 @@ defs["ImDrawListSplitter_Merge"][1]["call_args"] = "(draw_list)" defs["ImDrawListSplitter_Merge"][1]["cimguiname"] = "ImDrawListSplitter_Merge" defs["ImDrawListSplitter_Merge"][1]["defaults"] = {} defs["ImDrawListSplitter_Merge"][1]["funcname"] = "Merge" -defs["ImDrawListSplitter_Merge"][1]["location"] = "imgui" +defs["ImDrawListSplitter_Merge"][1]["location"] = "imgui:2032" defs["ImDrawListSplitter_Merge"][1]["ov_cimguiname"] = "ImDrawListSplitter_Merge" defs["ImDrawListSplitter_Merge"][1]["ret"] = "void" defs["ImDrawListSplitter_Merge"][1]["signature"] = "(ImDrawList*)" @@ -804,7 +806,7 @@ defs["ImDrawListSplitter_SetCurrentChannel"][1]["call_args"] = "(draw_list,chann defs["ImDrawListSplitter_SetCurrentChannel"][1]["cimguiname"] = "ImDrawListSplitter_SetCurrentChannel" defs["ImDrawListSplitter_SetCurrentChannel"][1]["defaults"] = {} defs["ImDrawListSplitter_SetCurrentChannel"][1]["funcname"] = "SetCurrentChannel" -defs["ImDrawListSplitter_SetCurrentChannel"][1]["location"] = "imgui" +defs["ImDrawListSplitter_SetCurrentChannel"][1]["location"] = "imgui:2033" defs["ImDrawListSplitter_SetCurrentChannel"][1]["ov_cimguiname"] = "ImDrawListSplitter_SetCurrentChannel" defs["ImDrawListSplitter_SetCurrentChannel"][1]["ret"] = "void" defs["ImDrawListSplitter_SetCurrentChannel"][1]["signature"] = "(ImDrawList*,int)" @@ -828,7 +830,7 @@ defs["ImDrawListSplitter_Split"][1]["call_args"] = "(draw_list,count)" defs["ImDrawListSplitter_Split"][1]["cimguiname"] = "ImDrawListSplitter_Split" defs["ImDrawListSplitter_Split"][1]["defaults"] = {} defs["ImDrawListSplitter_Split"][1]["funcname"] = "Split" -defs["ImDrawListSplitter_Split"][1]["location"] = "imgui" +defs["ImDrawListSplitter_Split"][1]["location"] = "imgui:2031" defs["ImDrawListSplitter_Split"][1]["ov_cimguiname"] = "ImDrawListSplitter_Split" defs["ImDrawListSplitter_Split"][1]["ret"] = "void" defs["ImDrawListSplitter_Split"][1]["signature"] = "(ImDrawList*,int)" @@ -845,7 +847,9 @@ defs["ImDrawListSplitter_destroy"][1]["call_args"] = "(self)" defs["ImDrawListSplitter_destroy"][1]["cimguiname"] = "ImDrawListSplitter_destroy" defs["ImDrawListSplitter_destroy"][1]["defaults"] = {} defs["ImDrawListSplitter_destroy"][1]["destructor"] = true +defs["ImDrawListSplitter_destroy"][1]["location"] = "imgui:2028" defs["ImDrawListSplitter_destroy"][1]["ov_cimguiname"] = "ImDrawListSplitter_destroy" +defs["ImDrawListSplitter_destroy"][1]["realdestructor"] = true defs["ImDrawListSplitter_destroy"][1]["ret"] = "void" defs["ImDrawListSplitter_destroy"][1]["signature"] = "(ImDrawListSplitter*)" defs["ImDrawListSplitter_destroy"][1]["stname"] = "ImDrawListSplitter" @@ -884,7 +888,7 @@ defs["ImDrawList_AddBezierCurve"][1]["cimguiname"] = "ImDrawList_AddBezierCurve" defs["ImDrawList_AddBezierCurve"][1]["defaults"] = {} defs["ImDrawList_AddBezierCurve"][1]["defaults"]["num_segments"] = "0" defs["ImDrawList_AddBezierCurve"][1]["funcname"] = "AddBezierCurve" -defs["ImDrawList_AddBezierCurve"][1]["location"] = "imgui" +defs["ImDrawList_AddBezierCurve"][1]["location"] = "imgui:2123" defs["ImDrawList_AddBezierCurve"][1]["ov_cimguiname"] = "ImDrawList_AddBezierCurve" defs["ImDrawList_AddBezierCurve"][1]["ret"] = "void" defs["ImDrawList_AddBezierCurve"][1]["signature"] = "(const ImVec2,const ImVec2,const ImVec2,const ImVec2,ImU32,float,int)" @@ -908,7 +912,7 @@ defs["ImDrawList_AddCallback"][1]["call_args"] = "(callback,callback_data)" defs["ImDrawList_AddCallback"][1]["cimguiname"] = "ImDrawList_AddCallback" defs["ImDrawList_AddCallback"][1]["defaults"] = {} defs["ImDrawList_AddCallback"][1]["funcname"] = "AddCallback" -defs["ImDrawList_AddCallback"][1]["location"] = "imgui" +defs["ImDrawList_AddCallback"][1]["location"] = "imgui:2145" defs["ImDrawList_AddCallback"][1]["ov_cimguiname"] = "ImDrawList_AddCallback" defs["ImDrawList_AddCallback"][1]["ret"] = "void" defs["ImDrawList_AddCallback"][1]["signature"] = "(ImDrawCallback,void*)" @@ -943,7 +947,7 @@ defs["ImDrawList_AddCircle"][1]["defaults"] = {} defs["ImDrawList_AddCircle"][1]["defaults"]["num_segments"] = "0" defs["ImDrawList_AddCircle"][1]["defaults"]["thickness"] = "1.0f" defs["ImDrawList_AddCircle"][1]["funcname"] = "AddCircle" -defs["ImDrawList_AddCircle"][1]["location"] = "imgui" +defs["ImDrawList_AddCircle"][1]["location"] = "imgui:2115" defs["ImDrawList_AddCircle"][1]["ov_cimguiname"] = "ImDrawList_AddCircle" defs["ImDrawList_AddCircle"][1]["ret"] = "void" defs["ImDrawList_AddCircle"][1]["signature"] = "(const ImVec2,float,ImU32,int,float)" @@ -974,7 +978,7 @@ defs["ImDrawList_AddCircleFilled"][1]["cimguiname"] = "ImDrawList_AddCircleFille defs["ImDrawList_AddCircleFilled"][1]["defaults"] = {} defs["ImDrawList_AddCircleFilled"][1]["defaults"]["num_segments"] = "0" defs["ImDrawList_AddCircleFilled"][1]["funcname"] = "AddCircleFilled" -defs["ImDrawList_AddCircleFilled"][1]["location"] = "imgui" +defs["ImDrawList_AddCircleFilled"][1]["location"] = "imgui:2116" defs["ImDrawList_AddCircleFilled"][1]["ov_cimguiname"] = "ImDrawList_AddCircleFilled" defs["ImDrawList_AddCircleFilled"][1]["ret"] = "void" defs["ImDrawList_AddCircleFilled"][1]["signature"] = "(const ImVec2,float,ImU32,int)" @@ -1001,7 +1005,7 @@ defs["ImDrawList_AddConvexPolyFilled"][1]["call_args"] = "(points,num_points,col defs["ImDrawList_AddConvexPolyFilled"][1]["cimguiname"] = "ImDrawList_AddConvexPolyFilled" defs["ImDrawList_AddConvexPolyFilled"][1]["defaults"] = {} defs["ImDrawList_AddConvexPolyFilled"][1]["funcname"] = "AddConvexPolyFilled" -defs["ImDrawList_AddConvexPolyFilled"][1]["location"] = "imgui" +defs["ImDrawList_AddConvexPolyFilled"][1]["location"] = "imgui:2122" defs["ImDrawList_AddConvexPolyFilled"][1]["ov_cimguiname"] = "ImDrawList_AddConvexPolyFilled" defs["ImDrawList_AddConvexPolyFilled"][1]["ret"] = "void" defs["ImDrawList_AddConvexPolyFilled"][1]["signature"] = "(const ImVec2*,int,ImU32)" @@ -1019,7 +1023,7 @@ defs["ImDrawList_AddDrawCmd"][1]["call_args"] = "()" defs["ImDrawList_AddDrawCmd"][1]["cimguiname"] = "ImDrawList_AddDrawCmd" defs["ImDrawList_AddDrawCmd"][1]["defaults"] = {} defs["ImDrawList_AddDrawCmd"][1]["funcname"] = "AddDrawCmd" -defs["ImDrawList_AddDrawCmd"][1]["location"] = "imgui" +defs["ImDrawList_AddDrawCmd"][1]["location"] = "imgui:2146" defs["ImDrawList_AddDrawCmd"][1]["ov_cimguiname"] = "ImDrawList_AddDrawCmd" defs["ImDrawList_AddDrawCmd"][1]["ret"] = "void" defs["ImDrawList_AddDrawCmd"][1]["signature"] = "()" @@ -1054,11 +1058,11 @@ defs["ImDrawList_AddImage"][1]["argsoriginal"] = "(ImTextureID user_texture_id,c defs["ImDrawList_AddImage"][1]["call_args"] = "(user_texture_id,p_min,p_max,uv_min,uv_max,col)" defs["ImDrawList_AddImage"][1]["cimguiname"] = "ImDrawList_AddImage" defs["ImDrawList_AddImage"][1]["defaults"] = {} -defs["ImDrawList_AddImage"][1]["defaults"]["col"] = "(((ImU32)(255)<<24)|((ImU32)(255)<<16)|((ImU32)(255)<<8)|((ImU32)(255)<<0))" +defs["ImDrawList_AddImage"][1]["defaults"]["col"] = "4294967295" defs["ImDrawList_AddImage"][1]["defaults"]["uv_max"] = "ImVec2(1,1)" defs["ImDrawList_AddImage"][1]["defaults"]["uv_min"] = "ImVec2(0,0)" defs["ImDrawList_AddImage"][1]["funcname"] = "AddImage" -defs["ImDrawList_AddImage"][1]["location"] = "imgui" +defs["ImDrawList_AddImage"][1]["location"] = "imgui:2129" defs["ImDrawList_AddImage"][1]["ov_cimguiname"] = "ImDrawList_AddImage" defs["ImDrawList_AddImage"][1]["ret"] = "void" defs["ImDrawList_AddImage"][1]["signature"] = "(ImTextureID,const ImVec2,const ImVec2,const ImVec2,const ImVec2,ImU32)" @@ -1105,13 +1109,13 @@ defs["ImDrawList_AddImageQuad"][1]["argsoriginal"] = "(ImTextureID user_texture_ defs["ImDrawList_AddImageQuad"][1]["call_args"] = "(user_texture_id,p1,p2,p3,p4,uv1,uv2,uv3,uv4,col)" defs["ImDrawList_AddImageQuad"][1]["cimguiname"] = "ImDrawList_AddImageQuad" defs["ImDrawList_AddImageQuad"][1]["defaults"] = {} -defs["ImDrawList_AddImageQuad"][1]["defaults"]["col"] = "(((ImU32)(255)<<24)|((ImU32)(255)<<16)|((ImU32)(255)<<8)|((ImU32)(255)<<0))" +defs["ImDrawList_AddImageQuad"][1]["defaults"]["col"] = "4294967295" defs["ImDrawList_AddImageQuad"][1]["defaults"]["uv1"] = "ImVec2(0,0)" defs["ImDrawList_AddImageQuad"][1]["defaults"]["uv2"] = "ImVec2(1,0)" defs["ImDrawList_AddImageQuad"][1]["defaults"]["uv3"] = "ImVec2(1,1)" defs["ImDrawList_AddImageQuad"][1]["defaults"]["uv4"] = "ImVec2(0,1)" defs["ImDrawList_AddImageQuad"][1]["funcname"] = "AddImageQuad" -defs["ImDrawList_AddImageQuad"][1]["location"] = "imgui" +defs["ImDrawList_AddImageQuad"][1]["location"] = "imgui:2130" defs["ImDrawList_AddImageQuad"][1]["ov_cimguiname"] = "ImDrawList_AddImageQuad" defs["ImDrawList_AddImageQuad"][1]["ret"] = "void" defs["ImDrawList_AddImageQuad"][1]["signature"] = "(ImTextureID,const ImVec2,const ImVec2,const ImVec2,const ImVec2,const ImVec2,const ImVec2,const ImVec2,const ImVec2,ImU32)" @@ -1154,7 +1158,7 @@ defs["ImDrawList_AddImageRounded"][1]["cimguiname"] = "ImDrawList_AddImageRounde defs["ImDrawList_AddImageRounded"][1]["defaults"] = {} defs["ImDrawList_AddImageRounded"][1]["defaults"]["rounding_corners"] = "ImDrawCornerFlags_All" defs["ImDrawList_AddImageRounded"][1]["funcname"] = "AddImageRounded" -defs["ImDrawList_AddImageRounded"][1]["location"] = "imgui" +defs["ImDrawList_AddImageRounded"][1]["location"] = "imgui:2131" defs["ImDrawList_AddImageRounded"][1]["ov_cimguiname"] = "ImDrawList_AddImageRounded" defs["ImDrawList_AddImageRounded"][1]["ret"] = "void" defs["ImDrawList_AddImageRounded"][1]["signature"] = "(ImTextureID,const ImVec2,const ImVec2,const ImVec2,const ImVec2,ImU32,float,ImDrawCornerFlags)" @@ -1185,7 +1189,7 @@ defs["ImDrawList_AddLine"][1]["cimguiname"] = "ImDrawList_AddLine" defs["ImDrawList_AddLine"][1]["defaults"] = {} defs["ImDrawList_AddLine"][1]["defaults"]["thickness"] = "1.0f" defs["ImDrawList_AddLine"][1]["funcname"] = "AddLine" -defs["ImDrawList_AddLine"][1]["location"] = "imgui" +defs["ImDrawList_AddLine"][1]["location"] = "imgui:2107" defs["ImDrawList_AddLine"][1]["ov_cimguiname"] = "ImDrawList_AddLine" defs["ImDrawList_AddLine"][1]["ret"] = "void" defs["ImDrawList_AddLine"][1]["signature"] = "(const ImVec2,const ImVec2,ImU32,float)" @@ -1219,7 +1223,7 @@ defs["ImDrawList_AddNgon"][1]["cimguiname"] = "ImDrawList_AddNgon" defs["ImDrawList_AddNgon"][1]["defaults"] = {} defs["ImDrawList_AddNgon"][1]["defaults"]["thickness"] = "1.0f" defs["ImDrawList_AddNgon"][1]["funcname"] = "AddNgon" -defs["ImDrawList_AddNgon"][1]["location"] = "imgui" +defs["ImDrawList_AddNgon"][1]["location"] = "imgui:2117" defs["ImDrawList_AddNgon"][1]["ov_cimguiname"] = "ImDrawList_AddNgon" defs["ImDrawList_AddNgon"][1]["ret"] = "void" defs["ImDrawList_AddNgon"][1]["signature"] = "(const ImVec2,float,ImU32,int,float)" @@ -1249,7 +1253,7 @@ defs["ImDrawList_AddNgonFilled"][1]["call_args"] = "(center,radius,col,num_segme defs["ImDrawList_AddNgonFilled"][1]["cimguiname"] = "ImDrawList_AddNgonFilled" defs["ImDrawList_AddNgonFilled"][1]["defaults"] = {} defs["ImDrawList_AddNgonFilled"][1]["funcname"] = "AddNgonFilled" -defs["ImDrawList_AddNgonFilled"][1]["location"] = "imgui" +defs["ImDrawList_AddNgonFilled"][1]["location"] = "imgui:2118" defs["ImDrawList_AddNgonFilled"][1]["ov_cimguiname"] = "ImDrawList_AddNgonFilled" defs["ImDrawList_AddNgonFilled"][1]["ret"] = "void" defs["ImDrawList_AddNgonFilled"][1]["signature"] = "(const ImVec2,float,ImU32,int)" @@ -1282,7 +1286,7 @@ defs["ImDrawList_AddPolyline"][1]["call_args"] = "(points,num_points,col,closed, defs["ImDrawList_AddPolyline"][1]["cimguiname"] = "ImDrawList_AddPolyline" defs["ImDrawList_AddPolyline"][1]["defaults"] = {} defs["ImDrawList_AddPolyline"][1]["funcname"] = "AddPolyline" -defs["ImDrawList_AddPolyline"][1]["location"] = "imgui" +defs["ImDrawList_AddPolyline"][1]["location"] = "imgui:2121" defs["ImDrawList_AddPolyline"][1]["ov_cimguiname"] = "ImDrawList_AddPolyline" defs["ImDrawList_AddPolyline"][1]["ret"] = "void" defs["ImDrawList_AddPolyline"][1]["signature"] = "(const ImVec2*,int,ImU32,bool,float)" @@ -1319,7 +1323,7 @@ defs["ImDrawList_AddQuad"][1]["cimguiname"] = "ImDrawList_AddQuad" defs["ImDrawList_AddQuad"][1]["defaults"] = {} defs["ImDrawList_AddQuad"][1]["defaults"]["thickness"] = "1.0f" defs["ImDrawList_AddQuad"][1]["funcname"] = "AddQuad" -defs["ImDrawList_AddQuad"][1]["location"] = "imgui" +defs["ImDrawList_AddQuad"][1]["location"] = "imgui:2111" defs["ImDrawList_AddQuad"][1]["ov_cimguiname"] = "ImDrawList_AddQuad" defs["ImDrawList_AddQuad"][1]["ret"] = "void" defs["ImDrawList_AddQuad"][1]["signature"] = "(const ImVec2,const ImVec2,const ImVec2,const ImVec2,ImU32,float)" @@ -1352,7 +1356,7 @@ defs["ImDrawList_AddQuadFilled"][1]["call_args"] = "(p1,p2,p3,p4,col)" defs["ImDrawList_AddQuadFilled"][1]["cimguiname"] = "ImDrawList_AddQuadFilled" defs["ImDrawList_AddQuadFilled"][1]["defaults"] = {} defs["ImDrawList_AddQuadFilled"][1]["funcname"] = "AddQuadFilled" -defs["ImDrawList_AddQuadFilled"][1]["location"] = "imgui" +defs["ImDrawList_AddQuadFilled"][1]["location"] = "imgui:2112" defs["ImDrawList_AddQuadFilled"][1]["ov_cimguiname"] = "ImDrawList_AddQuadFilled" defs["ImDrawList_AddQuadFilled"][1]["ret"] = "void" defs["ImDrawList_AddQuadFilled"][1]["signature"] = "(const ImVec2,const ImVec2,const ImVec2,const ImVec2,ImU32)" @@ -1391,7 +1395,7 @@ defs["ImDrawList_AddRect"][1]["defaults"]["rounding"] = "0.0f" defs["ImDrawList_AddRect"][1]["defaults"]["rounding_corners"] = "ImDrawCornerFlags_All" defs["ImDrawList_AddRect"][1]["defaults"]["thickness"] = "1.0f" defs["ImDrawList_AddRect"][1]["funcname"] = "AddRect" -defs["ImDrawList_AddRect"][1]["location"] = "imgui" +defs["ImDrawList_AddRect"][1]["location"] = "imgui:2108" defs["ImDrawList_AddRect"][1]["ov_cimguiname"] = "ImDrawList_AddRect" defs["ImDrawList_AddRect"][1]["ret"] = "void" defs["ImDrawList_AddRect"][1]["signature"] = "(const ImVec2,const ImVec2,ImU32,float,ImDrawCornerFlags,float)" @@ -1426,7 +1430,7 @@ defs["ImDrawList_AddRectFilled"][1]["defaults"] = {} defs["ImDrawList_AddRectFilled"][1]["defaults"]["rounding"] = "0.0f" defs["ImDrawList_AddRectFilled"][1]["defaults"]["rounding_corners"] = "ImDrawCornerFlags_All" defs["ImDrawList_AddRectFilled"][1]["funcname"] = "AddRectFilled" -defs["ImDrawList_AddRectFilled"][1]["location"] = "imgui" +defs["ImDrawList_AddRectFilled"][1]["location"] = "imgui:2109" defs["ImDrawList_AddRectFilled"][1]["ov_cimguiname"] = "ImDrawList_AddRectFilled" defs["ImDrawList_AddRectFilled"][1]["ret"] = "void" defs["ImDrawList_AddRectFilled"][1]["signature"] = "(const ImVec2,const ImVec2,ImU32,float,ImDrawCornerFlags)" @@ -1462,7 +1466,7 @@ defs["ImDrawList_AddRectFilledMultiColor"][1]["call_args"] = "(p_min,p_max,col_u defs["ImDrawList_AddRectFilledMultiColor"][1]["cimguiname"] = "ImDrawList_AddRectFilledMultiColor" defs["ImDrawList_AddRectFilledMultiColor"][1]["defaults"] = {} defs["ImDrawList_AddRectFilledMultiColor"][1]["funcname"] = "AddRectFilledMultiColor" -defs["ImDrawList_AddRectFilledMultiColor"][1]["location"] = "imgui" +defs["ImDrawList_AddRectFilledMultiColor"][1]["location"] = "imgui:2110" defs["ImDrawList_AddRectFilledMultiColor"][1]["ov_cimguiname"] = "ImDrawList_AddRectFilledMultiColor" defs["ImDrawList_AddRectFilledMultiColor"][1]["ret"] = "void" defs["ImDrawList_AddRectFilledMultiColor"][1]["signature"] = "(const ImVec2,const ImVec2,ImU32,ImU32,ImU32,ImU32)" @@ -1491,9 +1495,9 @@ defs["ImDrawList_AddText"][1]["argsoriginal"] = "(const ImVec2& pos,ImU32 col,co defs["ImDrawList_AddText"][1]["call_args"] = "(pos,col,text_begin,text_end)" defs["ImDrawList_AddText"][1]["cimguiname"] = "ImDrawList_AddText" defs["ImDrawList_AddText"][1]["defaults"] = {} -defs["ImDrawList_AddText"][1]["defaults"]["text_end"] = "((void*)0)" +defs["ImDrawList_AddText"][1]["defaults"]["text_end"] = "NULL" defs["ImDrawList_AddText"][1]["funcname"] = "AddText" -defs["ImDrawList_AddText"][1]["location"] = "imgui" +defs["ImDrawList_AddText"][1]["location"] = "imgui:2119" defs["ImDrawList_AddText"][1]["ov_cimguiname"] = "ImDrawList_AddTextVec2" defs["ImDrawList_AddText"][1]["ret"] = "void" defs["ImDrawList_AddText"][1]["signature"] = "(const ImVec2,ImU32,const char*,const char*)" @@ -1532,11 +1536,11 @@ defs["ImDrawList_AddText"][2]["argsoriginal"] = "(const ImFont* font,float font_ defs["ImDrawList_AddText"][2]["call_args"] = "(font,font_size,pos,col,text_begin,text_end,wrap_width,cpu_fine_clip_rect)" defs["ImDrawList_AddText"][2]["cimguiname"] = "ImDrawList_AddText" defs["ImDrawList_AddText"][2]["defaults"] = {} -defs["ImDrawList_AddText"][2]["defaults"]["cpu_fine_clip_rect"] = "((void*)0)" -defs["ImDrawList_AddText"][2]["defaults"]["text_end"] = "((void*)0)" +defs["ImDrawList_AddText"][2]["defaults"]["cpu_fine_clip_rect"] = "NULL" +defs["ImDrawList_AddText"][2]["defaults"]["text_end"] = "NULL" defs["ImDrawList_AddText"][2]["defaults"]["wrap_width"] = "0.0f" defs["ImDrawList_AddText"][2]["funcname"] = "AddText" -defs["ImDrawList_AddText"][2]["location"] = "imgui" +defs["ImDrawList_AddText"][2]["location"] = "imgui:2120" defs["ImDrawList_AddText"][2]["ov_cimguiname"] = "ImDrawList_AddTextFontPtr" defs["ImDrawList_AddText"][2]["ret"] = "void" defs["ImDrawList_AddText"][2]["signature"] = "(const ImFont*,float,const ImVec2,ImU32,const char*,const char*,float,const ImVec4*)" @@ -1571,7 +1575,7 @@ defs["ImDrawList_AddTriangle"][1]["cimguiname"] = "ImDrawList_AddTriangle" defs["ImDrawList_AddTriangle"][1]["defaults"] = {} defs["ImDrawList_AddTriangle"][1]["defaults"]["thickness"] = "1.0f" defs["ImDrawList_AddTriangle"][1]["funcname"] = "AddTriangle" -defs["ImDrawList_AddTriangle"][1]["location"] = "imgui" +defs["ImDrawList_AddTriangle"][1]["location"] = "imgui:2113" defs["ImDrawList_AddTriangle"][1]["ov_cimguiname"] = "ImDrawList_AddTriangle" defs["ImDrawList_AddTriangle"][1]["ret"] = "void" defs["ImDrawList_AddTriangle"][1]["signature"] = "(const ImVec2,const ImVec2,const ImVec2,ImU32,float)" @@ -1601,7 +1605,7 @@ defs["ImDrawList_AddTriangleFilled"][1]["call_args"] = "(p1,p2,p3,col)" defs["ImDrawList_AddTriangleFilled"][1]["cimguiname"] = "ImDrawList_AddTriangleFilled" defs["ImDrawList_AddTriangleFilled"][1]["defaults"] = {} defs["ImDrawList_AddTriangleFilled"][1]["funcname"] = "AddTriangleFilled" -defs["ImDrawList_AddTriangleFilled"][1]["location"] = "imgui" +defs["ImDrawList_AddTriangleFilled"][1]["location"] = "imgui:2114" defs["ImDrawList_AddTriangleFilled"][1]["ov_cimguiname"] = "ImDrawList_AddTriangleFilled" defs["ImDrawList_AddTriangleFilled"][1]["ret"] = "void" defs["ImDrawList_AddTriangleFilled"][1]["signature"] = "(const ImVec2,const ImVec2,const ImVec2,ImU32)" @@ -1619,7 +1623,7 @@ defs["ImDrawList_ChannelsMerge"][1]["call_args"] = "()" defs["ImDrawList_ChannelsMerge"][1]["cimguiname"] = "ImDrawList_ChannelsMerge" defs["ImDrawList_ChannelsMerge"][1]["defaults"] = {} defs["ImDrawList_ChannelsMerge"][1]["funcname"] = "ChannelsMerge" -defs["ImDrawList_ChannelsMerge"][1]["location"] = "imgui" +defs["ImDrawList_ChannelsMerge"][1]["location"] = "imgui:2156" defs["ImDrawList_ChannelsMerge"][1]["ov_cimguiname"] = "ImDrawList_ChannelsMerge" defs["ImDrawList_ChannelsMerge"][1]["ret"] = "void" defs["ImDrawList_ChannelsMerge"][1]["signature"] = "()" @@ -1640,7 +1644,7 @@ defs["ImDrawList_ChannelsSetCurrent"][1]["call_args"] = "(n)" defs["ImDrawList_ChannelsSetCurrent"][1]["cimguiname"] = "ImDrawList_ChannelsSetCurrent" defs["ImDrawList_ChannelsSetCurrent"][1]["defaults"] = {} defs["ImDrawList_ChannelsSetCurrent"][1]["funcname"] = "ChannelsSetCurrent" -defs["ImDrawList_ChannelsSetCurrent"][1]["location"] = "imgui" +defs["ImDrawList_ChannelsSetCurrent"][1]["location"] = "imgui:2157" defs["ImDrawList_ChannelsSetCurrent"][1]["ov_cimguiname"] = "ImDrawList_ChannelsSetCurrent" defs["ImDrawList_ChannelsSetCurrent"][1]["ret"] = "void" defs["ImDrawList_ChannelsSetCurrent"][1]["signature"] = "(int)" @@ -1661,7 +1665,7 @@ defs["ImDrawList_ChannelsSplit"][1]["call_args"] = "(count)" defs["ImDrawList_ChannelsSplit"][1]["cimguiname"] = "ImDrawList_ChannelsSplit" defs["ImDrawList_ChannelsSplit"][1]["defaults"] = {} defs["ImDrawList_ChannelsSplit"][1]["funcname"] = "ChannelsSplit" -defs["ImDrawList_ChannelsSplit"][1]["location"] = "imgui" +defs["ImDrawList_ChannelsSplit"][1]["location"] = "imgui:2155" defs["ImDrawList_ChannelsSplit"][1]["ov_cimguiname"] = "ImDrawList_ChannelsSplit" defs["ImDrawList_ChannelsSplit"][1]["ret"] = "void" defs["ImDrawList_ChannelsSplit"][1]["signature"] = "(int)" @@ -1679,7 +1683,7 @@ defs["ImDrawList_CloneOutput"][1]["call_args"] = "()" defs["ImDrawList_CloneOutput"][1]["cimguiname"] = "ImDrawList_CloneOutput" defs["ImDrawList_CloneOutput"][1]["defaults"] = {} defs["ImDrawList_CloneOutput"][1]["funcname"] = "CloneOutput" -defs["ImDrawList_CloneOutput"][1]["location"] = "imgui" +defs["ImDrawList_CloneOutput"][1]["location"] = "imgui:2147" defs["ImDrawList_CloneOutput"][1]["ov_cimguiname"] = "ImDrawList_CloneOutput" defs["ImDrawList_CloneOutput"][1]["ret"] = "ImDrawList*" defs["ImDrawList_CloneOutput"][1]["signature"] = "()const" @@ -1700,7 +1704,7 @@ defs["ImDrawList_GetClipRectMax"][1]["call_args"] = "()" defs["ImDrawList_GetClipRectMax"][1]["cimguiname"] = "ImDrawList_GetClipRectMax" defs["ImDrawList_GetClipRectMax"][1]["defaults"] = {} defs["ImDrawList_GetClipRectMax"][1]["funcname"] = "GetClipRectMax" -defs["ImDrawList_GetClipRectMax"][1]["location"] = "imgui" +defs["ImDrawList_GetClipRectMax"][1]["location"] = "imgui:2099" defs["ImDrawList_GetClipRectMax"][1]["nonUDT"] = 1 defs["ImDrawList_GetClipRectMax"][1]["ov_cimguiname"] = "ImDrawList_GetClipRectMax" defs["ImDrawList_GetClipRectMax"][1]["ret"] = "void" @@ -1722,7 +1726,7 @@ defs["ImDrawList_GetClipRectMin"][1]["call_args"] = "()" defs["ImDrawList_GetClipRectMin"][1]["cimguiname"] = "ImDrawList_GetClipRectMin" defs["ImDrawList_GetClipRectMin"][1]["defaults"] = {} defs["ImDrawList_GetClipRectMin"][1]["funcname"] = "GetClipRectMin" -defs["ImDrawList_GetClipRectMin"][1]["location"] = "imgui" +defs["ImDrawList_GetClipRectMin"][1]["location"] = "imgui:2098" defs["ImDrawList_GetClipRectMin"][1]["nonUDT"] = 1 defs["ImDrawList_GetClipRectMin"][1]["ov_cimguiname"] = "ImDrawList_GetClipRectMin" defs["ImDrawList_GetClipRectMin"][1]["ret"] = "void" @@ -1742,7 +1746,7 @@ defs["ImDrawList_ImDrawList"][1]["cimguiname"] = "ImDrawList_ImDrawList" defs["ImDrawList_ImDrawList"][1]["constructor"] = true defs["ImDrawList_ImDrawList"][1]["defaults"] = {} defs["ImDrawList_ImDrawList"][1]["funcname"] = "ImDrawList" -defs["ImDrawList_ImDrawList"][1]["location"] = "imgui" +defs["ImDrawList_ImDrawList"][1]["location"] = "imgui:2090" defs["ImDrawList_ImDrawList"][1]["ov_cimguiname"] = "ImDrawList_ImDrawList" defs["ImDrawList_ImDrawList"][1]["signature"] = "(const ImDrawListSharedData*)" defs["ImDrawList_ImDrawList"][1]["stname"] = "ImDrawList" @@ -1775,7 +1779,7 @@ defs["ImDrawList_PathArcTo"][1]["cimguiname"] = "ImDrawList_PathArcTo" defs["ImDrawList_PathArcTo"][1]["defaults"] = {} defs["ImDrawList_PathArcTo"][1]["defaults"]["num_segments"] = "10" defs["ImDrawList_PathArcTo"][1]["funcname"] = "PathArcTo" -defs["ImDrawList_PathArcTo"][1]["location"] = "imgui" +defs["ImDrawList_PathArcTo"][1]["location"] = "imgui:2139" defs["ImDrawList_PathArcTo"][1]["ov_cimguiname"] = "ImDrawList_PathArcTo" defs["ImDrawList_PathArcTo"][1]["ret"] = "void" defs["ImDrawList_PathArcTo"][1]["signature"] = "(const ImVec2,float,float,float,int)" @@ -1805,7 +1809,7 @@ defs["ImDrawList_PathArcToFast"][1]["call_args"] = "(center,radius,a_min_of_12,a defs["ImDrawList_PathArcToFast"][1]["cimguiname"] = "ImDrawList_PathArcToFast" defs["ImDrawList_PathArcToFast"][1]["defaults"] = {} defs["ImDrawList_PathArcToFast"][1]["funcname"] = "PathArcToFast" -defs["ImDrawList_PathArcToFast"][1]["location"] = "imgui" +defs["ImDrawList_PathArcToFast"][1]["location"] = "imgui:2140" defs["ImDrawList_PathArcToFast"][1]["ov_cimguiname"] = "ImDrawList_PathArcToFast" defs["ImDrawList_PathArcToFast"][1]["ret"] = "void" defs["ImDrawList_PathArcToFast"][1]["signature"] = "(const ImVec2,float,int,int)" @@ -1836,7 +1840,7 @@ defs["ImDrawList_PathBezierCurveTo"][1]["cimguiname"] = "ImDrawList_PathBezierCu defs["ImDrawList_PathBezierCurveTo"][1]["defaults"] = {} defs["ImDrawList_PathBezierCurveTo"][1]["defaults"]["num_segments"] = "0" defs["ImDrawList_PathBezierCurveTo"][1]["funcname"] = "PathBezierCurveTo" -defs["ImDrawList_PathBezierCurveTo"][1]["location"] = "imgui" +defs["ImDrawList_PathBezierCurveTo"][1]["location"] = "imgui:2141" defs["ImDrawList_PathBezierCurveTo"][1]["ov_cimguiname"] = "ImDrawList_PathBezierCurveTo" defs["ImDrawList_PathBezierCurveTo"][1]["ret"] = "void" defs["ImDrawList_PathBezierCurveTo"][1]["signature"] = "(const ImVec2,const ImVec2,const ImVec2,int)" @@ -1854,7 +1858,7 @@ defs["ImDrawList_PathClear"][1]["call_args"] = "()" defs["ImDrawList_PathClear"][1]["cimguiname"] = "ImDrawList_PathClear" defs["ImDrawList_PathClear"][1]["defaults"] = {} defs["ImDrawList_PathClear"][1]["funcname"] = "PathClear" -defs["ImDrawList_PathClear"][1]["location"] = "imgui" +defs["ImDrawList_PathClear"][1]["location"] = "imgui:2134" defs["ImDrawList_PathClear"][1]["ov_cimguiname"] = "ImDrawList_PathClear" defs["ImDrawList_PathClear"][1]["ret"] = "void" defs["ImDrawList_PathClear"][1]["signature"] = "()" @@ -1875,7 +1879,7 @@ defs["ImDrawList_PathFillConvex"][1]["call_args"] = "(col)" defs["ImDrawList_PathFillConvex"][1]["cimguiname"] = "ImDrawList_PathFillConvex" defs["ImDrawList_PathFillConvex"][1]["defaults"] = {} defs["ImDrawList_PathFillConvex"][1]["funcname"] = "PathFillConvex" -defs["ImDrawList_PathFillConvex"][1]["location"] = "imgui" +defs["ImDrawList_PathFillConvex"][1]["location"] = "imgui:2137" defs["ImDrawList_PathFillConvex"][1]["ov_cimguiname"] = "ImDrawList_PathFillConvex" defs["ImDrawList_PathFillConvex"][1]["ret"] = "void" defs["ImDrawList_PathFillConvex"][1]["signature"] = "(ImU32)" @@ -1896,7 +1900,7 @@ defs["ImDrawList_PathLineTo"][1]["call_args"] = "(pos)" defs["ImDrawList_PathLineTo"][1]["cimguiname"] = "ImDrawList_PathLineTo" defs["ImDrawList_PathLineTo"][1]["defaults"] = {} defs["ImDrawList_PathLineTo"][1]["funcname"] = "PathLineTo" -defs["ImDrawList_PathLineTo"][1]["location"] = "imgui" +defs["ImDrawList_PathLineTo"][1]["location"] = "imgui:2135" defs["ImDrawList_PathLineTo"][1]["ov_cimguiname"] = "ImDrawList_PathLineTo" defs["ImDrawList_PathLineTo"][1]["ret"] = "void" defs["ImDrawList_PathLineTo"][1]["signature"] = "(const ImVec2)" @@ -1917,7 +1921,7 @@ defs["ImDrawList_PathLineToMergeDuplicate"][1]["call_args"] = "(pos)" defs["ImDrawList_PathLineToMergeDuplicate"][1]["cimguiname"] = "ImDrawList_PathLineToMergeDuplicate" defs["ImDrawList_PathLineToMergeDuplicate"][1]["defaults"] = {} defs["ImDrawList_PathLineToMergeDuplicate"][1]["funcname"] = "PathLineToMergeDuplicate" -defs["ImDrawList_PathLineToMergeDuplicate"][1]["location"] = "imgui" +defs["ImDrawList_PathLineToMergeDuplicate"][1]["location"] = "imgui:2136" defs["ImDrawList_PathLineToMergeDuplicate"][1]["ov_cimguiname"] = "ImDrawList_PathLineToMergeDuplicate" defs["ImDrawList_PathLineToMergeDuplicate"][1]["ret"] = "void" defs["ImDrawList_PathLineToMergeDuplicate"][1]["signature"] = "(const ImVec2)" @@ -1949,7 +1953,7 @@ defs["ImDrawList_PathRect"][1]["defaults"] = {} defs["ImDrawList_PathRect"][1]["defaults"]["rounding"] = "0.0f" defs["ImDrawList_PathRect"][1]["defaults"]["rounding_corners"] = "ImDrawCornerFlags_All" defs["ImDrawList_PathRect"][1]["funcname"] = "PathRect" -defs["ImDrawList_PathRect"][1]["location"] = "imgui" +defs["ImDrawList_PathRect"][1]["location"] = "imgui:2142" defs["ImDrawList_PathRect"][1]["ov_cimguiname"] = "ImDrawList_PathRect" defs["ImDrawList_PathRect"][1]["ret"] = "void" defs["ImDrawList_PathRect"][1]["signature"] = "(const ImVec2,const ImVec2,float,ImDrawCornerFlags)" @@ -1977,7 +1981,7 @@ defs["ImDrawList_PathStroke"][1]["cimguiname"] = "ImDrawList_PathStroke" defs["ImDrawList_PathStroke"][1]["defaults"] = {} defs["ImDrawList_PathStroke"][1]["defaults"]["thickness"] = "1.0f" defs["ImDrawList_PathStroke"][1]["funcname"] = "PathStroke" -defs["ImDrawList_PathStroke"][1]["location"] = "imgui" +defs["ImDrawList_PathStroke"][1]["location"] = "imgui:2138" defs["ImDrawList_PathStroke"][1]["ov_cimguiname"] = "ImDrawList_PathStroke" defs["ImDrawList_PathStroke"][1]["ret"] = "void" defs["ImDrawList_PathStroke"][1]["signature"] = "(ImU32,bool,float)" @@ -1995,7 +1999,7 @@ defs["ImDrawList_PopClipRect"][1]["call_args"] = "()" defs["ImDrawList_PopClipRect"][1]["cimguiname"] = "ImDrawList_PopClipRect" defs["ImDrawList_PopClipRect"][1]["defaults"] = {} defs["ImDrawList_PopClipRect"][1]["funcname"] = "PopClipRect" -defs["ImDrawList_PopClipRect"][1]["location"] = "imgui" +defs["ImDrawList_PopClipRect"][1]["location"] = "imgui:2095" defs["ImDrawList_PopClipRect"][1]["ov_cimguiname"] = "ImDrawList_PopClipRect" defs["ImDrawList_PopClipRect"][1]["ret"] = "void" defs["ImDrawList_PopClipRect"][1]["signature"] = "()" @@ -2013,7 +2017,7 @@ defs["ImDrawList_PopTextureID"][1]["call_args"] = "()" defs["ImDrawList_PopTextureID"][1]["cimguiname"] = "ImDrawList_PopTextureID" defs["ImDrawList_PopTextureID"][1]["defaults"] = {} defs["ImDrawList_PopTextureID"][1]["funcname"] = "PopTextureID" -defs["ImDrawList_PopTextureID"][1]["location"] = "imgui" +defs["ImDrawList_PopTextureID"][1]["location"] = "imgui:2097" defs["ImDrawList_PopTextureID"][1]["ov_cimguiname"] = "ImDrawList_PopTextureID" defs["ImDrawList_PopTextureID"][1]["ret"] = "void" defs["ImDrawList_PopTextureID"][1]["signature"] = "()" @@ -2058,7 +2062,7 @@ defs["ImDrawList_PrimQuadUV"][1]["call_args"] = "(a,b,c,d,uv_a,uv_b,uv_c,uv_d,co defs["ImDrawList_PrimQuadUV"][1]["cimguiname"] = "ImDrawList_PrimQuadUV" defs["ImDrawList_PrimQuadUV"][1]["defaults"] = {} defs["ImDrawList_PrimQuadUV"][1]["funcname"] = "PrimQuadUV" -defs["ImDrawList_PrimQuadUV"][1]["location"] = "imgui" +defs["ImDrawList_PrimQuadUV"][1]["location"] = "imgui:2166" defs["ImDrawList_PrimQuadUV"][1]["ov_cimguiname"] = "ImDrawList_PrimQuadUV" defs["ImDrawList_PrimQuadUV"][1]["ret"] = "void" defs["ImDrawList_PrimQuadUV"][1]["signature"] = "(const ImVec2,const ImVec2,const ImVec2,const ImVec2,const ImVec2,const ImVec2,const ImVec2,const ImVec2,ImU32)" @@ -2085,7 +2089,7 @@ defs["ImDrawList_PrimRect"][1]["call_args"] = "(a,b,col)" defs["ImDrawList_PrimRect"][1]["cimguiname"] = "ImDrawList_PrimRect" defs["ImDrawList_PrimRect"][1]["defaults"] = {} defs["ImDrawList_PrimRect"][1]["funcname"] = "PrimRect" -defs["ImDrawList_PrimRect"][1]["location"] = "imgui" +defs["ImDrawList_PrimRect"][1]["location"] = "imgui:2164" defs["ImDrawList_PrimRect"][1]["ov_cimguiname"] = "ImDrawList_PrimRect" defs["ImDrawList_PrimRect"][1]["ret"] = "void" defs["ImDrawList_PrimRect"][1]["signature"] = "(const ImVec2,const ImVec2,ImU32)" @@ -2118,7 +2122,7 @@ defs["ImDrawList_PrimRectUV"][1]["call_args"] = "(a,b,uv_a,uv_b,col)" defs["ImDrawList_PrimRectUV"][1]["cimguiname"] = "ImDrawList_PrimRectUV" defs["ImDrawList_PrimRectUV"][1]["defaults"] = {} defs["ImDrawList_PrimRectUV"][1]["funcname"] = "PrimRectUV" -defs["ImDrawList_PrimRectUV"][1]["location"] = "imgui" +defs["ImDrawList_PrimRectUV"][1]["location"] = "imgui:2165" defs["ImDrawList_PrimRectUV"][1]["ov_cimguiname"] = "ImDrawList_PrimRectUV" defs["ImDrawList_PrimRectUV"][1]["ret"] = "void" defs["ImDrawList_PrimRectUV"][1]["signature"] = "(const ImVec2,const ImVec2,const ImVec2,const ImVec2,ImU32)" @@ -2142,7 +2146,7 @@ defs["ImDrawList_PrimReserve"][1]["call_args"] = "(idx_count,vtx_count)" defs["ImDrawList_PrimReserve"][1]["cimguiname"] = "ImDrawList_PrimReserve" defs["ImDrawList_PrimReserve"][1]["defaults"] = {} defs["ImDrawList_PrimReserve"][1]["funcname"] = "PrimReserve" -defs["ImDrawList_PrimReserve"][1]["location"] = "imgui" +defs["ImDrawList_PrimReserve"][1]["location"] = "imgui:2162" defs["ImDrawList_PrimReserve"][1]["ov_cimguiname"] = "ImDrawList_PrimReserve" defs["ImDrawList_PrimReserve"][1]["ret"] = "void" defs["ImDrawList_PrimReserve"][1]["signature"] = "(int,int)" @@ -2166,7 +2170,7 @@ defs["ImDrawList_PrimUnreserve"][1]["call_args"] = "(idx_count,vtx_count)" defs["ImDrawList_PrimUnreserve"][1]["cimguiname"] = "ImDrawList_PrimUnreserve" defs["ImDrawList_PrimUnreserve"][1]["defaults"] = {} defs["ImDrawList_PrimUnreserve"][1]["funcname"] = "PrimUnreserve" -defs["ImDrawList_PrimUnreserve"][1]["location"] = "imgui" +defs["ImDrawList_PrimUnreserve"][1]["location"] = "imgui:2163" defs["ImDrawList_PrimUnreserve"][1]["ov_cimguiname"] = "ImDrawList_PrimUnreserve" defs["ImDrawList_PrimUnreserve"][1]["ret"] = "void" defs["ImDrawList_PrimUnreserve"][1]["signature"] = "(int,int)" @@ -2193,7 +2197,7 @@ defs["ImDrawList_PrimVtx"][1]["call_args"] = "(pos,uv,col)" defs["ImDrawList_PrimVtx"][1]["cimguiname"] = "ImDrawList_PrimVtx" defs["ImDrawList_PrimVtx"][1]["defaults"] = {} defs["ImDrawList_PrimVtx"][1]["funcname"] = "PrimVtx" -defs["ImDrawList_PrimVtx"][1]["location"] = "imgui" +defs["ImDrawList_PrimVtx"][1]["location"] = "imgui:2169" defs["ImDrawList_PrimVtx"][1]["ov_cimguiname"] = "ImDrawList_PrimVtx" defs["ImDrawList_PrimVtx"][1]["ret"] = "void" defs["ImDrawList_PrimVtx"][1]["signature"] = "(const ImVec2,const ImVec2,ImU32)" @@ -2214,7 +2218,7 @@ defs["ImDrawList_PrimWriteIdx"][1]["call_args"] = "(idx)" defs["ImDrawList_PrimWriteIdx"][1]["cimguiname"] = "ImDrawList_PrimWriteIdx" defs["ImDrawList_PrimWriteIdx"][1]["defaults"] = {} defs["ImDrawList_PrimWriteIdx"][1]["funcname"] = "PrimWriteIdx" -defs["ImDrawList_PrimWriteIdx"][1]["location"] = "imgui" +defs["ImDrawList_PrimWriteIdx"][1]["location"] = "imgui:2168" defs["ImDrawList_PrimWriteIdx"][1]["ov_cimguiname"] = "ImDrawList_PrimWriteIdx" defs["ImDrawList_PrimWriteIdx"][1]["ret"] = "void" defs["ImDrawList_PrimWriteIdx"][1]["signature"] = "(ImDrawIdx)" @@ -2241,7 +2245,7 @@ defs["ImDrawList_PrimWriteVtx"][1]["call_args"] = "(pos,uv,col)" defs["ImDrawList_PrimWriteVtx"][1]["cimguiname"] = "ImDrawList_PrimWriteVtx" defs["ImDrawList_PrimWriteVtx"][1]["defaults"] = {} defs["ImDrawList_PrimWriteVtx"][1]["funcname"] = "PrimWriteVtx" -defs["ImDrawList_PrimWriteVtx"][1]["location"] = "imgui" +defs["ImDrawList_PrimWriteVtx"][1]["location"] = "imgui:2167" defs["ImDrawList_PrimWriteVtx"][1]["ov_cimguiname"] = "ImDrawList_PrimWriteVtx" defs["ImDrawList_PrimWriteVtx"][1]["ret"] = "void" defs["ImDrawList_PrimWriteVtx"][1]["signature"] = "(const ImVec2,const ImVec2,ImU32)" @@ -2269,7 +2273,7 @@ defs["ImDrawList_PushClipRect"][1]["cimguiname"] = "ImDrawList_PushClipRect" defs["ImDrawList_PushClipRect"][1]["defaults"] = {} defs["ImDrawList_PushClipRect"][1]["defaults"]["intersect_with_current_clip_rect"] = "false" defs["ImDrawList_PushClipRect"][1]["funcname"] = "PushClipRect" -defs["ImDrawList_PushClipRect"][1]["location"] = "imgui" +defs["ImDrawList_PushClipRect"][1]["location"] = "imgui:2093" defs["ImDrawList_PushClipRect"][1]["ov_cimguiname"] = "ImDrawList_PushClipRect" defs["ImDrawList_PushClipRect"][1]["ret"] = "void" defs["ImDrawList_PushClipRect"][1]["signature"] = "(ImVec2,ImVec2,bool)" @@ -2287,7 +2291,7 @@ defs["ImDrawList_PushClipRectFullScreen"][1]["call_args"] = "()" defs["ImDrawList_PushClipRectFullScreen"][1]["cimguiname"] = "ImDrawList_PushClipRectFullScreen" defs["ImDrawList_PushClipRectFullScreen"][1]["defaults"] = {} defs["ImDrawList_PushClipRectFullScreen"][1]["funcname"] = "PushClipRectFullScreen" -defs["ImDrawList_PushClipRectFullScreen"][1]["location"] = "imgui" +defs["ImDrawList_PushClipRectFullScreen"][1]["location"] = "imgui:2094" defs["ImDrawList_PushClipRectFullScreen"][1]["ov_cimguiname"] = "ImDrawList_PushClipRectFullScreen" defs["ImDrawList_PushClipRectFullScreen"][1]["ret"] = "void" defs["ImDrawList_PushClipRectFullScreen"][1]["signature"] = "()" @@ -2308,7 +2312,7 @@ defs["ImDrawList_PushTextureID"][1]["call_args"] = "(texture_id)" defs["ImDrawList_PushTextureID"][1]["cimguiname"] = "ImDrawList_PushTextureID" defs["ImDrawList_PushTextureID"][1]["defaults"] = {} defs["ImDrawList_PushTextureID"][1]["funcname"] = "PushTextureID" -defs["ImDrawList_PushTextureID"][1]["location"] = "imgui" +defs["ImDrawList_PushTextureID"][1]["location"] = "imgui:2096" defs["ImDrawList_PushTextureID"][1]["ov_cimguiname"] = "ImDrawList_PushTextureID" defs["ImDrawList_PushTextureID"][1]["ret"] = "void" defs["ImDrawList_PushTextureID"][1]["signature"] = "(ImTextureID)" @@ -2326,7 +2330,7 @@ defs["ImDrawList__ClearFreeMemory"][1]["call_args"] = "()" defs["ImDrawList__ClearFreeMemory"][1]["cimguiname"] = "ImDrawList__ClearFreeMemory" defs["ImDrawList__ClearFreeMemory"][1]["defaults"] = {} defs["ImDrawList__ClearFreeMemory"][1]["funcname"] = "_ClearFreeMemory" -defs["ImDrawList__ClearFreeMemory"][1]["location"] = "imgui" +defs["ImDrawList__ClearFreeMemory"][1]["location"] = "imgui:2173" defs["ImDrawList__ClearFreeMemory"][1]["ov_cimguiname"] = "ImDrawList__ClearFreeMemory" defs["ImDrawList__ClearFreeMemory"][1]["ret"] = "void" defs["ImDrawList__ClearFreeMemory"][1]["signature"] = "()" @@ -2344,7 +2348,7 @@ defs["ImDrawList__OnChangedClipRect"][1]["call_args"] = "()" defs["ImDrawList__OnChangedClipRect"][1]["cimguiname"] = "ImDrawList__OnChangedClipRect" defs["ImDrawList__OnChangedClipRect"][1]["defaults"] = {} defs["ImDrawList__OnChangedClipRect"][1]["funcname"] = "_OnChangedClipRect" -defs["ImDrawList__OnChangedClipRect"][1]["location"] = "imgui" +defs["ImDrawList__OnChangedClipRect"][1]["location"] = "imgui:2175" defs["ImDrawList__OnChangedClipRect"][1]["ov_cimguiname"] = "ImDrawList__OnChangedClipRect" defs["ImDrawList__OnChangedClipRect"][1]["ret"] = "void" defs["ImDrawList__OnChangedClipRect"][1]["signature"] = "()" @@ -2362,7 +2366,7 @@ defs["ImDrawList__OnChangedTextureID"][1]["call_args"] = "()" defs["ImDrawList__OnChangedTextureID"][1]["cimguiname"] = "ImDrawList__OnChangedTextureID" defs["ImDrawList__OnChangedTextureID"][1]["defaults"] = {} defs["ImDrawList__OnChangedTextureID"][1]["funcname"] = "_OnChangedTextureID" -defs["ImDrawList__OnChangedTextureID"][1]["location"] = "imgui" +defs["ImDrawList__OnChangedTextureID"][1]["location"] = "imgui:2176" defs["ImDrawList__OnChangedTextureID"][1]["ov_cimguiname"] = "ImDrawList__OnChangedTextureID" defs["ImDrawList__OnChangedTextureID"][1]["ret"] = "void" defs["ImDrawList__OnChangedTextureID"][1]["signature"] = "()" @@ -2380,7 +2384,7 @@ defs["ImDrawList__OnChangedVtxOffset"][1]["call_args"] = "()" defs["ImDrawList__OnChangedVtxOffset"][1]["cimguiname"] = "ImDrawList__OnChangedVtxOffset" defs["ImDrawList__OnChangedVtxOffset"][1]["defaults"] = {} defs["ImDrawList__OnChangedVtxOffset"][1]["funcname"] = "_OnChangedVtxOffset" -defs["ImDrawList__OnChangedVtxOffset"][1]["location"] = "imgui" +defs["ImDrawList__OnChangedVtxOffset"][1]["location"] = "imgui:2177" defs["ImDrawList__OnChangedVtxOffset"][1]["ov_cimguiname"] = "ImDrawList__OnChangedVtxOffset" defs["ImDrawList__OnChangedVtxOffset"][1]["ret"] = "void" defs["ImDrawList__OnChangedVtxOffset"][1]["signature"] = "()" @@ -2398,7 +2402,7 @@ defs["ImDrawList__PopUnusedDrawCmd"][1]["call_args"] = "()" defs["ImDrawList__PopUnusedDrawCmd"][1]["cimguiname"] = "ImDrawList__PopUnusedDrawCmd" defs["ImDrawList__PopUnusedDrawCmd"][1]["defaults"] = {} defs["ImDrawList__PopUnusedDrawCmd"][1]["funcname"] = "_PopUnusedDrawCmd" -defs["ImDrawList__PopUnusedDrawCmd"][1]["location"] = "imgui" +defs["ImDrawList__PopUnusedDrawCmd"][1]["location"] = "imgui:2174" defs["ImDrawList__PopUnusedDrawCmd"][1]["ov_cimguiname"] = "ImDrawList__PopUnusedDrawCmd" defs["ImDrawList__PopUnusedDrawCmd"][1]["ret"] = "void" defs["ImDrawList__PopUnusedDrawCmd"][1]["signature"] = "()" @@ -2416,7 +2420,7 @@ defs["ImDrawList__ResetForNewFrame"][1]["call_args"] = "()" defs["ImDrawList__ResetForNewFrame"][1]["cimguiname"] = "ImDrawList__ResetForNewFrame" defs["ImDrawList__ResetForNewFrame"][1]["defaults"] = {} defs["ImDrawList__ResetForNewFrame"][1]["funcname"] = "_ResetForNewFrame" -defs["ImDrawList__ResetForNewFrame"][1]["location"] = "imgui" +defs["ImDrawList__ResetForNewFrame"][1]["location"] = "imgui:2172" defs["ImDrawList__ResetForNewFrame"][1]["ov_cimguiname"] = "ImDrawList__ResetForNewFrame" defs["ImDrawList__ResetForNewFrame"][1]["ret"] = "void" defs["ImDrawList__ResetForNewFrame"][1]["signature"] = "()" @@ -2433,7 +2437,9 @@ defs["ImDrawList_destroy"][1]["call_args"] = "(self)" defs["ImDrawList_destroy"][1]["cimguiname"] = "ImDrawList_destroy" defs["ImDrawList_destroy"][1]["defaults"] = {} defs["ImDrawList_destroy"][1]["destructor"] = true +defs["ImDrawList_destroy"][1]["location"] = "imgui:2092" defs["ImDrawList_destroy"][1]["ov_cimguiname"] = "ImDrawList_destroy" +defs["ImDrawList_destroy"][1]["realdestructor"] = true defs["ImDrawList_destroy"][1]["ret"] = "void" defs["ImDrawList_destroy"][1]["signature"] = "(ImDrawList*)" defs["ImDrawList_destroy"][1]["stname"] = "ImDrawList" @@ -2448,7 +2454,7 @@ defs["ImFontAtlasCustomRect_ImFontAtlasCustomRect"][1]["cimguiname"] = "ImFontAt defs["ImFontAtlasCustomRect_ImFontAtlasCustomRect"][1]["constructor"] = true defs["ImFontAtlasCustomRect_ImFontAtlasCustomRect"][1]["defaults"] = {} defs["ImFontAtlasCustomRect_ImFontAtlasCustomRect"][1]["funcname"] = "ImFontAtlasCustomRect" -defs["ImFontAtlasCustomRect_ImFontAtlasCustomRect"][1]["location"] = "imgui" +defs["ImFontAtlasCustomRect_ImFontAtlasCustomRect"][1]["location"] = "imgui:2269" defs["ImFontAtlasCustomRect_ImFontAtlasCustomRect"][1]["ov_cimguiname"] = "ImFontAtlasCustomRect_ImFontAtlasCustomRect" defs["ImFontAtlasCustomRect_ImFontAtlasCustomRect"][1]["signature"] = "()" defs["ImFontAtlasCustomRect_ImFontAtlasCustomRect"][1]["stname"] = "ImFontAtlasCustomRect" @@ -2465,7 +2471,7 @@ defs["ImFontAtlasCustomRect_IsPacked"][1]["call_args"] = "()" defs["ImFontAtlasCustomRect_IsPacked"][1]["cimguiname"] = "ImFontAtlasCustomRect_IsPacked" defs["ImFontAtlasCustomRect_IsPacked"][1]["defaults"] = {} defs["ImFontAtlasCustomRect_IsPacked"][1]["funcname"] = "IsPacked" -defs["ImFontAtlasCustomRect_IsPacked"][1]["location"] = "imgui" +defs["ImFontAtlasCustomRect_IsPacked"][1]["location"] = "imgui:2270" defs["ImFontAtlasCustomRect_IsPacked"][1]["ov_cimguiname"] = "ImFontAtlasCustomRect_IsPacked" defs["ImFontAtlasCustomRect_IsPacked"][1]["ret"] = "bool" defs["ImFontAtlasCustomRect_IsPacked"][1]["signature"] = "()const" @@ -2518,7 +2524,7 @@ defs["ImFontAtlas_AddCustomRectFontGlyph"][1]["cimguiname"] = "ImFontAtlas_AddCu defs["ImFontAtlas_AddCustomRectFontGlyph"][1]["defaults"] = {} defs["ImFontAtlas_AddCustomRectFontGlyph"][1]["defaults"]["offset"] = "ImVec2(0,0)" defs["ImFontAtlas_AddCustomRectFontGlyph"][1]["funcname"] = "AddCustomRectFontGlyph" -defs["ImFontAtlas_AddCustomRectFontGlyph"][1]["location"] = "imgui" +defs["ImFontAtlas_AddCustomRectFontGlyph"][1]["location"] = "imgui:2352" defs["ImFontAtlas_AddCustomRectFontGlyph"][1]["ov_cimguiname"] = "ImFontAtlas_AddCustomRectFontGlyph" defs["ImFontAtlas_AddCustomRectFontGlyph"][1]["ret"] = "int" defs["ImFontAtlas_AddCustomRectFontGlyph"][1]["signature"] = "(ImFont*,ImWchar,int,int,float,const ImVec2)" @@ -2542,7 +2548,7 @@ defs["ImFontAtlas_AddCustomRectRegular"][1]["call_args"] = "(width,height)" defs["ImFontAtlas_AddCustomRectRegular"][1]["cimguiname"] = "ImFontAtlas_AddCustomRectRegular" defs["ImFontAtlas_AddCustomRectRegular"][1]["defaults"] = {} defs["ImFontAtlas_AddCustomRectRegular"][1]["funcname"] = "AddCustomRectRegular" -defs["ImFontAtlas_AddCustomRectRegular"][1]["location"] = "imgui" +defs["ImFontAtlas_AddCustomRectRegular"][1]["location"] = "imgui:2351" defs["ImFontAtlas_AddCustomRectRegular"][1]["ov_cimguiname"] = "ImFontAtlas_AddCustomRectRegular" defs["ImFontAtlas_AddCustomRectRegular"][1]["ret"] = "int" defs["ImFontAtlas_AddCustomRectRegular"][1]["signature"] = "(int,int)" @@ -2563,7 +2569,7 @@ defs["ImFontAtlas_AddFont"][1]["call_args"] = "(font_cfg)" defs["ImFontAtlas_AddFont"][1]["cimguiname"] = "ImFontAtlas_AddFont" defs["ImFontAtlas_AddFont"][1]["defaults"] = {} defs["ImFontAtlas_AddFont"][1]["funcname"] = "AddFont" -defs["ImFontAtlas_AddFont"][1]["location"] = "imgui" +defs["ImFontAtlas_AddFont"][1]["location"] = "imgui:2303" defs["ImFontAtlas_AddFont"][1]["ov_cimguiname"] = "ImFontAtlas_AddFont" defs["ImFontAtlas_AddFont"][1]["ret"] = "ImFont*" defs["ImFontAtlas_AddFont"][1]["signature"] = "(const ImFontConfig*)" @@ -2583,9 +2589,9 @@ defs["ImFontAtlas_AddFontDefault"][1]["argsoriginal"] = "(const ImFontConfig* fo defs["ImFontAtlas_AddFontDefault"][1]["call_args"] = "(font_cfg)" defs["ImFontAtlas_AddFontDefault"][1]["cimguiname"] = "ImFontAtlas_AddFontDefault" defs["ImFontAtlas_AddFontDefault"][1]["defaults"] = {} -defs["ImFontAtlas_AddFontDefault"][1]["defaults"]["font_cfg"] = "((void*)0)" +defs["ImFontAtlas_AddFontDefault"][1]["defaults"]["font_cfg"] = "NULL" defs["ImFontAtlas_AddFontDefault"][1]["funcname"] = "AddFontDefault" -defs["ImFontAtlas_AddFontDefault"][1]["location"] = "imgui" +defs["ImFontAtlas_AddFontDefault"][1]["location"] = "imgui:2304" defs["ImFontAtlas_AddFontDefault"][1]["ov_cimguiname"] = "ImFontAtlas_AddFontDefault" defs["ImFontAtlas_AddFontDefault"][1]["ret"] = "ImFont*" defs["ImFontAtlas_AddFontDefault"][1]["signature"] = "(const ImFontConfig*)" @@ -2614,10 +2620,10 @@ defs["ImFontAtlas_AddFontFromFileTTF"][1]["argsoriginal"] = "(const char* filena defs["ImFontAtlas_AddFontFromFileTTF"][1]["call_args"] = "(filename,size_pixels,font_cfg,glyph_ranges)" defs["ImFontAtlas_AddFontFromFileTTF"][1]["cimguiname"] = "ImFontAtlas_AddFontFromFileTTF" defs["ImFontAtlas_AddFontFromFileTTF"][1]["defaults"] = {} -defs["ImFontAtlas_AddFontFromFileTTF"][1]["defaults"]["font_cfg"] = "((void*)0)" -defs["ImFontAtlas_AddFontFromFileTTF"][1]["defaults"]["glyph_ranges"] = "((void*)0)" +defs["ImFontAtlas_AddFontFromFileTTF"][1]["defaults"]["font_cfg"] = "NULL" +defs["ImFontAtlas_AddFontFromFileTTF"][1]["defaults"]["glyph_ranges"] = "NULL" defs["ImFontAtlas_AddFontFromFileTTF"][1]["funcname"] = "AddFontFromFileTTF" -defs["ImFontAtlas_AddFontFromFileTTF"][1]["location"] = "imgui" +defs["ImFontAtlas_AddFontFromFileTTF"][1]["location"] = "imgui:2305" defs["ImFontAtlas_AddFontFromFileTTF"][1]["ov_cimguiname"] = "ImFontAtlas_AddFontFromFileTTF" defs["ImFontAtlas_AddFontFromFileTTF"][1]["ret"] = "ImFont*" defs["ImFontAtlas_AddFontFromFileTTF"][1]["signature"] = "(const char*,float,const ImFontConfig*,const ImWchar*)" @@ -2646,10 +2652,10 @@ defs["ImFontAtlas_AddFontFromMemoryCompressedBase85TTF"][1]["argsoriginal"] = "( defs["ImFontAtlas_AddFontFromMemoryCompressedBase85TTF"][1]["call_args"] = "(compressed_font_data_base85,size_pixels,font_cfg,glyph_ranges)" defs["ImFontAtlas_AddFontFromMemoryCompressedBase85TTF"][1]["cimguiname"] = "ImFontAtlas_AddFontFromMemoryCompressedBase85TTF" defs["ImFontAtlas_AddFontFromMemoryCompressedBase85TTF"][1]["defaults"] = {} -defs["ImFontAtlas_AddFontFromMemoryCompressedBase85TTF"][1]["defaults"]["font_cfg"] = "((void*)0)" -defs["ImFontAtlas_AddFontFromMemoryCompressedBase85TTF"][1]["defaults"]["glyph_ranges"] = "((void*)0)" +defs["ImFontAtlas_AddFontFromMemoryCompressedBase85TTF"][1]["defaults"]["font_cfg"] = "NULL" +defs["ImFontAtlas_AddFontFromMemoryCompressedBase85TTF"][1]["defaults"]["glyph_ranges"] = "NULL" defs["ImFontAtlas_AddFontFromMemoryCompressedBase85TTF"][1]["funcname"] = "AddFontFromMemoryCompressedBase85TTF" -defs["ImFontAtlas_AddFontFromMemoryCompressedBase85TTF"][1]["location"] = "imgui" +defs["ImFontAtlas_AddFontFromMemoryCompressedBase85TTF"][1]["location"] = "imgui:2308" defs["ImFontAtlas_AddFontFromMemoryCompressedBase85TTF"][1]["ov_cimguiname"] = "ImFontAtlas_AddFontFromMemoryCompressedBase85TTF" defs["ImFontAtlas_AddFontFromMemoryCompressedBase85TTF"][1]["ret"] = "ImFont*" defs["ImFontAtlas_AddFontFromMemoryCompressedBase85TTF"][1]["signature"] = "(const char*,float,const ImFontConfig*,const ImWchar*)" @@ -2681,10 +2687,10 @@ defs["ImFontAtlas_AddFontFromMemoryCompressedTTF"][1]["argsoriginal"] = "(const defs["ImFontAtlas_AddFontFromMemoryCompressedTTF"][1]["call_args"] = "(compressed_font_data,compressed_font_size,size_pixels,font_cfg,glyph_ranges)" defs["ImFontAtlas_AddFontFromMemoryCompressedTTF"][1]["cimguiname"] = "ImFontAtlas_AddFontFromMemoryCompressedTTF" defs["ImFontAtlas_AddFontFromMemoryCompressedTTF"][1]["defaults"] = {} -defs["ImFontAtlas_AddFontFromMemoryCompressedTTF"][1]["defaults"]["font_cfg"] = "((void*)0)" -defs["ImFontAtlas_AddFontFromMemoryCompressedTTF"][1]["defaults"]["glyph_ranges"] = "((void*)0)" +defs["ImFontAtlas_AddFontFromMemoryCompressedTTF"][1]["defaults"]["font_cfg"] = "NULL" +defs["ImFontAtlas_AddFontFromMemoryCompressedTTF"][1]["defaults"]["glyph_ranges"] = "NULL" defs["ImFontAtlas_AddFontFromMemoryCompressedTTF"][1]["funcname"] = "AddFontFromMemoryCompressedTTF" -defs["ImFontAtlas_AddFontFromMemoryCompressedTTF"][1]["location"] = "imgui" +defs["ImFontAtlas_AddFontFromMemoryCompressedTTF"][1]["location"] = "imgui:2307" defs["ImFontAtlas_AddFontFromMemoryCompressedTTF"][1]["ov_cimguiname"] = "ImFontAtlas_AddFontFromMemoryCompressedTTF" defs["ImFontAtlas_AddFontFromMemoryCompressedTTF"][1]["ret"] = "ImFont*" defs["ImFontAtlas_AddFontFromMemoryCompressedTTF"][1]["signature"] = "(const void*,int,float,const ImFontConfig*,const ImWchar*)" @@ -2716,10 +2722,10 @@ defs["ImFontAtlas_AddFontFromMemoryTTF"][1]["argsoriginal"] = "(void* font_data, defs["ImFontAtlas_AddFontFromMemoryTTF"][1]["call_args"] = "(font_data,font_size,size_pixels,font_cfg,glyph_ranges)" defs["ImFontAtlas_AddFontFromMemoryTTF"][1]["cimguiname"] = "ImFontAtlas_AddFontFromMemoryTTF" defs["ImFontAtlas_AddFontFromMemoryTTF"][1]["defaults"] = {} -defs["ImFontAtlas_AddFontFromMemoryTTF"][1]["defaults"]["font_cfg"] = "((void*)0)" -defs["ImFontAtlas_AddFontFromMemoryTTF"][1]["defaults"]["glyph_ranges"] = "((void*)0)" +defs["ImFontAtlas_AddFontFromMemoryTTF"][1]["defaults"]["font_cfg"] = "NULL" +defs["ImFontAtlas_AddFontFromMemoryTTF"][1]["defaults"]["glyph_ranges"] = "NULL" defs["ImFontAtlas_AddFontFromMemoryTTF"][1]["funcname"] = "AddFontFromMemoryTTF" -defs["ImFontAtlas_AddFontFromMemoryTTF"][1]["location"] = "imgui" +defs["ImFontAtlas_AddFontFromMemoryTTF"][1]["location"] = "imgui:2306" defs["ImFontAtlas_AddFontFromMemoryTTF"][1]["ov_cimguiname"] = "ImFontAtlas_AddFontFromMemoryTTF" defs["ImFontAtlas_AddFontFromMemoryTTF"][1]["ret"] = "ImFont*" defs["ImFontAtlas_AddFontFromMemoryTTF"][1]["signature"] = "(void*,int,float,const ImFontConfig*,const ImWchar*)" @@ -2737,7 +2743,7 @@ defs["ImFontAtlas_Build"][1]["call_args"] = "()" defs["ImFontAtlas_Build"][1]["cimguiname"] = "ImFontAtlas_Build" defs["ImFontAtlas_Build"][1]["defaults"] = {} defs["ImFontAtlas_Build"][1]["funcname"] = "Build" -defs["ImFontAtlas_Build"][1]["location"] = "imgui" +defs["ImFontAtlas_Build"][1]["location"] = "imgui:2319" defs["ImFontAtlas_Build"][1]["ov_cimguiname"] = "ImFontAtlas_Build" defs["ImFontAtlas_Build"][1]["ret"] = "bool" defs["ImFontAtlas_Build"][1]["signature"] = "()" @@ -2764,7 +2770,7 @@ defs["ImFontAtlas_CalcCustomRectUV"][1]["call_args"] = "(rect,out_uv_min,out_uv_ defs["ImFontAtlas_CalcCustomRectUV"][1]["cimguiname"] = "ImFontAtlas_CalcCustomRectUV" defs["ImFontAtlas_CalcCustomRectUV"][1]["defaults"] = {} defs["ImFontAtlas_CalcCustomRectUV"][1]["funcname"] = "CalcCustomRectUV" -defs["ImFontAtlas_CalcCustomRectUV"][1]["location"] = "imgui" +defs["ImFontAtlas_CalcCustomRectUV"][1]["location"] = "imgui:2356" defs["ImFontAtlas_CalcCustomRectUV"][1]["ov_cimguiname"] = "ImFontAtlas_CalcCustomRectUV" defs["ImFontAtlas_CalcCustomRectUV"][1]["ret"] = "void" defs["ImFontAtlas_CalcCustomRectUV"][1]["signature"] = "(const ImFontAtlasCustomRect*,ImVec2*,ImVec2*)const" @@ -2782,7 +2788,7 @@ defs["ImFontAtlas_Clear"][1]["call_args"] = "()" defs["ImFontAtlas_Clear"][1]["cimguiname"] = "ImFontAtlas_Clear" defs["ImFontAtlas_Clear"][1]["defaults"] = {} defs["ImFontAtlas_Clear"][1]["funcname"] = "Clear" -defs["ImFontAtlas_Clear"][1]["location"] = "imgui" +defs["ImFontAtlas_Clear"][1]["location"] = "imgui:2312" defs["ImFontAtlas_Clear"][1]["ov_cimguiname"] = "ImFontAtlas_Clear" defs["ImFontAtlas_Clear"][1]["ret"] = "void" defs["ImFontAtlas_Clear"][1]["signature"] = "()" @@ -2800,7 +2806,7 @@ defs["ImFontAtlas_ClearFonts"][1]["call_args"] = "()" defs["ImFontAtlas_ClearFonts"][1]["cimguiname"] = "ImFontAtlas_ClearFonts" defs["ImFontAtlas_ClearFonts"][1]["defaults"] = {} defs["ImFontAtlas_ClearFonts"][1]["funcname"] = "ClearFonts" -defs["ImFontAtlas_ClearFonts"][1]["location"] = "imgui" +defs["ImFontAtlas_ClearFonts"][1]["location"] = "imgui:2311" defs["ImFontAtlas_ClearFonts"][1]["ov_cimguiname"] = "ImFontAtlas_ClearFonts" defs["ImFontAtlas_ClearFonts"][1]["ret"] = "void" defs["ImFontAtlas_ClearFonts"][1]["signature"] = "()" @@ -2818,7 +2824,7 @@ defs["ImFontAtlas_ClearInputData"][1]["call_args"] = "()" defs["ImFontAtlas_ClearInputData"][1]["cimguiname"] = "ImFontAtlas_ClearInputData" defs["ImFontAtlas_ClearInputData"][1]["defaults"] = {} defs["ImFontAtlas_ClearInputData"][1]["funcname"] = "ClearInputData" -defs["ImFontAtlas_ClearInputData"][1]["location"] = "imgui" +defs["ImFontAtlas_ClearInputData"][1]["location"] = "imgui:2309" defs["ImFontAtlas_ClearInputData"][1]["ov_cimguiname"] = "ImFontAtlas_ClearInputData" defs["ImFontAtlas_ClearInputData"][1]["ret"] = "void" defs["ImFontAtlas_ClearInputData"][1]["signature"] = "()" @@ -2836,7 +2842,7 @@ defs["ImFontAtlas_ClearTexData"][1]["call_args"] = "()" defs["ImFontAtlas_ClearTexData"][1]["cimguiname"] = "ImFontAtlas_ClearTexData" defs["ImFontAtlas_ClearTexData"][1]["defaults"] = {} defs["ImFontAtlas_ClearTexData"][1]["funcname"] = "ClearTexData" -defs["ImFontAtlas_ClearTexData"][1]["location"] = "imgui" +defs["ImFontAtlas_ClearTexData"][1]["location"] = "imgui:2310" defs["ImFontAtlas_ClearTexData"][1]["ov_cimguiname"] = "ImFontAtlas_ClearTexData" defs["ImFontAtlas_ClearTexData"][1]["ret"] = "void" defs["ImFontAtlas_ClearTexData"][1]["signature"] = "()" @@ -2857,7 +2863,7 @@ defs["ImFontAtlas_GetCustomRectByIndex"][1]["call_args"] = "(index)" defs["ImFontAtlas_GetCustomRectByIndex"][1]["cimguiname"] = "ImFontAtlas_GetCustomRectByIndex" defs["ImFontAtlas_GetCustomRectByIndex"][1]["defaults"] = {} defs["ImFontAtlas_GetCustomRectByIndex"][1]["funcname"] = "GetCustomRectByIndex" -defs["ImFontAtlas_GetCustomRectByIndex"][1]["location"] = "imgui" +defs["ImFontAtlas_GetCustomRectByIndex"][1]["location"] = "imgui:2353" defs["ImFontAtlas_GetCustomRectByIndex"][1]["ov_cimguiname"] = "ImFontAtlas_GetCustomRectByIndex" defs["ImFontAtlas_GetCustomRectByIndex"][1]["ret"] = "ImFontAtlasCustomRect*" defs["ImFontAtlas_GetCustomRectByIndex"][1]["signature"] = "(int)" @@ -2875,7 +2881,7 @@ defs["ImFontAtlas_GetGlyphRangesChineseFull"][1]["call_args"] = "()" defs["ImFontAtlas_GetGlyphRangesChineseFull"][1]["cimguiname"] = "ImFontAtlas_GetGlyphRangesChineseFull" defs["ImFontAtlas_GetGlyphRangesChineseFull"][1]["defaults"] = {} defs["ImFontAtlas_GetGlyphRangesChineseFull"][1]["funcname"] = "GetGlyphRangesChineseFull" -defs["ImFontAtlas_GetGlyphRangesChineseFull"][1]["location"] = "imgui" +defs["ImFontAtlas_GetGlyphRangesChineseFull"][1]["location"] = "imgui:2335" defs["ImFontAtlas_GetGlyphRangesChineseFull"][1]["ov_cimguiname"] = "ImFontAtlas_GetGlyphRangesChineseFull" defs["ImFontAtlas_GetGlyphRangesChineseFull"][1]["ret"] = "const ImWchar*" defs["ImFontAtlas_GetGlyphRangesChineseFull"][1]["signature"] = "()" @@ -2893,7 +2899,7 @@ defs["ImFontAtlas_GetGlyphRangesChineseSimplifiedCommon"][1]["call_args"] = "()" defs["ImFontAtlas_GetGlyphRangesChineseSimplifiedCommon"][1]["cimguiname"] = "ImFontAtlas_GetGlyphRangesChineseSimplifiedCommon" defs["ImFontAtlas_GetGlyphRangesChineseSimplifiedCommon"][1]["defaults"] = {} defs["ImFontAtlas_GetGlyphRangesChineseSimplifiedCommon"][1]["funcname"] = "GetGlyphRangesChineseSimplifiedCommon" -defs["ImFontAtlas_GetGlyphRangesChineseSimplifiedCommon"][1]["location"] = "imgui" +defs["ImFontAtlas_GetGlyphRangesChineseSimplifiedCommon"][1]["location"] = "imgui:2336" defs["ImFontAtlas_GetGlyphRangesChineseSimplifiedCommon"][1]["ov_cimguiname"] = "ImFontAtlas_GetGlyphRangesChineseSimplifiedCommon" defs["ImFontAtlas_GetGlyphRangesChineseSimplifiedCommon"][1]["ret"] = "const ImWchar*" defs["ImFontAtlas_GetGlyphRangesChineseSimplifiedCommon"][1]["signature"] = "()" @@ -2911,7 +2917,7 @@ defs["ImFontAtlas_GetGlyphRangesCyrillic"][1]["call_args"] = "()" defs["ImFontAtlas_GetGlyphRangesCyrillic"][1]["cimguiname"] = "ImFontAtlas_GetGlyphRangesCyrillic" defs["ImFontAtlas_GetGlyphRangesCyrillic"][1]["defaults"] = {} defs["ImFontAtlas_GetGlyphRangesCyrillic"][1]["funcname"] = "GetGlyphRangesCyrillic" -defs["ImFontAtlas_GetGlyphRangesCyrillic"][1]["location"] = "imgui" +defs["ImFontAtlas_GetGlyphRangesCyrillic"][1]["location"] = "imgui:2337" defs["ImFontAtlas_GetGlyphRangesCyrillic"][1]["ov_cimguiname"] = "ImFontAtlas_GetGlyphRangesCyrillic" defs["ImFontAtlas_GetGlyphRangesCyrillic"][1]["ret"] = "const ImWchar*" defs["ImFontAtlas_GetGlyphRangesCyrillic"][1]["signature"] = "()" @@ -2929,7 +2935,7 @@ defs["ImFontAtlas_GetGlyphRangesDefault"][1]["call_args"] = "()" defs["ImFontAtlas_GetGlyphRangesDefault"][1]["cimguiname"] = "ImFontAtlas_GetGlyphRangesDefault" defs["ImFontAtlas_GetGlyphRangesDefault"][1]["defaults"] = {} defs["ImFontAtlas_GetGlyphRangesDefault"][1]["funcname"] = "GetGlyphRangesDefault" -defs["ImFontAtlas_GetGlyphRangesDefault"][1]["location"] = "imgui" +defs["ImFontAtlas_GetGlyphRangesDefault"][1]["location"] = "imgui:2332" defs["ImFontAtlas_GetGlyphRangesDefault"][1]["ov_cimguiname"] = "ImFontAtlas_GetGlyphRangesDefault" defs["ImFontAtlas_GetGlyphRangesDefault"][1]["ret"] = "const ImWchar*" defs["ImFontAtlas_GetGlyphRangesDefault"][1]["signature"] = "()" @@ -2947,7 +2953,7 @@ defs["ImFontAtlas_GetGlyphRangesJapanese"][1]["call_args"] = "()" defs["ImFontAtlas_GetGlyphRangesJapanese"][1]["cimguiname"] = "ImFontAtlas_GetGlyphRangesJapanese" defs["ImFontAtlas_GetGlyphRangesJapanese"][1]["defaults"] = {} defs["ImFontAtlas_GetGlyphRangesJapanese"][1]["funcname"] = "GetGlyphRangesJapanese" -defs["ImFontAtlas_GetGlyphRangesJapanese"][1]["location"] = "imgui" +defs["ImFontAtlas_GetGlyphRangesJapanese"][1]["location"] = "imgui:2334" defs["ImFontAtlas_GetGlyphRangesJapanese"][1]["ov_cimguiname"] = "ImFontAtlas_GetGlyphRangesJapanese" defs["ImFontAtlas_GetGlyphRangesJapanese"][1]["ret"] = "const ImWchar*" defs["ImFontAtlas_GetGlyphRangesJapanese"][1]["signature"] = "()" @@ -2965,7 +2971,7 @@ defs["ImFontAtlas_GetGlyphRangesKorean"][1]["call_args"] = "()" defs["ImFontAtlas_GetGlyphRangesKorean"][1]["cimguiname"] = "ImFontAtlas_GetGlyphRangesKorean" defs["ImFontAtlas_GetGlyphRangesKorean"][1]["defaults"] = {} defs["ImFontAtlas_GetGlyphRangesKorean"][1]["funcname"] = "GetGlyphRangesKorean" -defs["ImFontAtlas_GetGlyphRangesKorean"][1]["location"] = "imgui" +defs["ImFontAtlas_GetGlyphRangesKorean"][1]["location"] = "imgui:2333" defs["ImFontAtlas_GetGlyphRangesKorean"][1]["ov_cimguiname"] = "ImFontAtlas_GetGlyphRangesKorean" defs["ImFontAtlas_GetGlyphRangesKorean"][1]["ret"] = "const ImWchar*" defs["ImFontAtlas_GetGlyphRangesKorean"][1]["signature"] = "()" @@ -2983,7 +2989,7 @@ defs["ImFontAtlas_GetGlyphRangesThai"][1]["call_args"] = "()" defs["ImFontAtlas_GetGlyphRangesThai"][1]["cimguiname"] = "ImFontAtlas_GetGlyphRangesThai" defs["ImFontAtlas_GetGlyphRangesThai"][1]["defaults"] = {} defs["ImFontAtlas_GetGlyphRangesThai"][1]["funcname"] = "GetGlyphRangesThai" -defs["ImFontAtlas_GetGlyphRangesThai"][1]["location"] = "imgui" +defs["ImFontAtlas_GetGlyphRangesThai"][1]["location"] = "imgui:2338" defs["ImFontAtlas_GetGlyphRangesThai"][1]["ov_cimguiname"] = "ImFontAtlas_GetGlyphRangesThai" defs["ImFontAtlas_GetGlyphRangesThai"][1]["ret"] = "const ImWchar*" defs["ImFontAtlas_GetGlyphRangesThai"][1]["signature"] = "()" @@ -3001,7 +3007,7 @@ defs["ImFontAtlas_GetGlyphRangesVietnamese"][1]["call_args"] = "()" defs["ImFontAtlas_GetGlyphRangesVietnamese"][1]["cimguiname"] = "ImFontAtlas_GetGlyphRangesVietnamese" defs["ImFontAtlas_GetGlyphRangesVietnamese"][1]["defaults"] = {} defs["ImFontAtlas_GetGlyphRangesVietnamese"][1]["funcname"] = "GetGlyphRangesVietnamese" -defs["ImFontAtlas_GetGlyphRangesVietnamese"][1]["location"] = "imgui" +defs["ImFontAtlas_GetGlyphRangesVietnamese"][1]["location"] = "imgui:2339" defs["ImFontAtlas_GetGlyphRangesVietnamese"][1]["ov_cimguiname"] = "ImFontAtlas_GetGlyphRangesVietnamese" defs["ImFontAtlas_GetGlyphRangesVietnamese"][1]["ret"] = "const ImWchar*" defs["ImFontAtlas_GetGlyphRangesVietnamese"][1]["signature"] = "()" @@ -3034,7 +3040,7 @@ defs["ImFontAtlas_GetMouseCursorTexData"][1]["call_args"] = "(cursor,out_offset, defs["ImFontAtlas_GetMouseCursorTexData"][1]["cimguiname"] = "ImFontAtlas_GetMouseCursorTexData" defs["ImFontAtlas_GetMouseCursorTexData"][1]["defaults"] = {} defs["ImFontAtlas_GetMouseCursorTexData"][1]["funcname"] = "GetMouseCursorTexData" -defs["ImFontAtlas_GetMouseCursorTexData"][1]["location"] = "imgui" +defs["ImFontAtlas_GetMouseCursorTexData"][1]["location"] = "imgui:2357" defs["ImFontAtlas_GetMouseCursorTexData"][1]["ov_cimguiname"] = "ImFontAtlas_GetMouseCursorTexData" defs["ImFontAtlas_GetMouseCursorTexData"][1]["ret"] = "bool" defs["ImFontAtlas_GetMouseCursorTexData"][1]["signature"] = "(ImGuiMouseCursor,ImVec2*,ImVec2*,ImVec2[2],ImVec2[2])" @@ -3063,9 +3069,9 @@ defs["ImFontAtlas_GetTexDataAsAlpha8"][1]["argsoriginal"] = "(unsigned char** ou defs["ImFontAtlas_GetTexDataAsAlpha8"][1]["call_args"] = "(out_pixels,out_width,out_height,out_bytes_per_pixel)" defs["ImFontAtlas_GetTexDataAsAlpha8"][1]["cimguiname"] = "ImFontAtlas_GetTexDataAsAlpha8" defs["ImFontAtlas_GetTexDataAsAlpha8"][1]["defaults"] = {} -defs["ImFontAtlas_GetTexDataAsAlpha8"][1]["defaults"]["out_bytes_per_pixel"] = "((void*)0)" +defs["ImFontAtlas_GetTexDataAsAlpha8"][1]["defaults"]["out_bytes_per_pixel"] = "NULL" defs["ImFontAtlas_GetTexDataAsAlpha8"][1]["funcname"] = "GetTexDataAsAlpha8" -defs["ImFontAtlas_GetTexDataAsAlpha8"][1]["location"] = "imgui" +defs["ImFontAtlas_GetTexDataAsAlpha8"][1]["location"] = "imgui:2320" defs["ImFontAtlas_GetTexDataAsAlpha8"][1]["ov_cimguiname"] = "ImFontAtlas_GetTexDataAsAlpha8" defs["ImFontAtlas_GetTexDataAsAlpha8"][1]["ret"] = "void" defs["ImFontAtlas_GetTexDataAsAlpha8"][1]["signature"] = "(unsigned char**,int*,int*,int*)" @@ -3094,9 +3100,9 @@ defs["ImFontAtlas_GetTexDataAsRGBA32"][1]["argsoriginal"] = "(unsigned char** ou defs["ImFontAtlas_GetTexDataAsRGBA32"][1]["call_args"] = "(out_pixels,out_width,out_height,out_bytes_per_pixel)" defs["ImFontAtlas_GetTexDataAsRGBA32"][1]["cimguiname"] = "ImFontAtlas_GetTexDataAsRGBA32" defs["ImFontAtlas_GetTexDataAsRGBA32"][1]["defaults"] = {} -defs["ImFontAtlas_GetTexDataAsRGBA32"][1]["defaults"]["out_bytes_per_pixel"] = "((void*)0)" +defs["ImFontAtlas_GetTexDataAsRGBA32"][1]["defaults"]["out_bytes_per_pixel"] = "NULL" defs["ImFontAtlas_GetTexDataAsRGBA32"][1]["funcname"] = "GetTexDataAsRGBA32" -defs["ImFontAtlas_GetTexDataAsRGBA32"][1]["location"] = "imgui" +defs["ImFontAtlas_GetTexDataAsRGBA32"][1]["location"] = "imgui:2321" defs["ImFontAtlas_GetTexDataAsRGBA32"][1]["ov_cimguiname"] = "ImFontAtlas_GetTexDataAsRGBA32" defs["ImFontAtlas_GetTexDataAsRGBA32"][1]["ret"] = "void" defs["ImFontAtlas_GetTexDataAsRGBA32"][1]["signature"] = "(unsigned char**,int*,int*,int*)" @@ -3112,7 +3118,7 @@ defs["ImFontAtlas_ImFontAtlas"][1]["cimguiname"] = "ImFontAtlas_ImFontAtlas" defs["ImFontAtlas_ImFontAtlas"][1]["constructor"] = true defs["ImFontAtlas_ImFontAtlas"][1]["defaults"] = {} defs["ImFontAtlas_ImFontAtlas"][1]["funcname"] = "ImFontAtlas" -defs["ImFontAtlas_ImFontAtlas"][1]["location"] = "imgui" +defs["ImFontAtlas_ImFontAtlas"][1]["location"] = "imgui:2301" defs["ImFontAtlas_ImFontAtlas"][1]["ov_cimguiname"] = "ImFontAtlas_ImFontAtlas" defs["ImFontAtlas_ImFontAtlas"][1]["signature"] = "()" defs["ImFontAtlas_ImFontAtlas"][1]["stname"] = "ImFontAtlas" @@ -3129,7 +3135,7 @@ defs["ImFontAtlas_IsBuilt"][1]["call_args"] = "()" defs["ImFontAtlas_IsBuilt"][1]["cimguiname"] = "ImFontAtlas_IsBuilt" defs["ImFontAtlas_IsBuilt"][1]["defaults"] = {} defs["ImFontAtlas_IsBuilt"][1]["funcname"] = "IsBuilt" -defs["ImFontAtlas_IsBuilt"][1]["location"] = "imgui" +defs["ImFontAtlas_IsBuilt"][1]["location"] = "imgui:2322" defs["ImFontAtlas_IsBuilt"][1]["ov_cimguiname"] = "ImFontAtlas_IsBuilt" defs["ImFontAtlas_IsBuilt"][1]["ret"] = "bool" defs["ImFontAtlas_IsBuilt"][1]["signature"] = "()const" @@ -3150,7 +3156,7 @@ defs["ImFontAtlas_SetTexID"][1]["call_args"] = "(id)" defs["ImFontAtlas_SetTexID"][1]["cimguiname"] = "ImFontAtlas_SetTexID" defs["ImFontAtlas_SetTexID"][1]["defaults"] = {} defs["ImFontAtlas_SetTexID"][1]["funcname"] = "SetTexID" -defs["ImFontAtlas_SetTexID"][1]["location"] = "imgui" +defs["ImFontAtlas_SetTexID"][1]["location"] = "imgui:2323" defs["ImFontAtlas_SetTexID"][1]["ov_cimguiname"] = "ImFontAtlas_SetTexID" defs["ImFontAtlas_SetTexID"][1]["ret"] = "void" defs["ImFontAtlas_SetTexID"][1]["signature"] = "(ImTextureID)" @@ -3167,7 +3173,9 @@ defs["ImFontAtlas_destroy"][1]["call_args"] = "(self)" defs["ImFontAtlas_destroy"][1]["cimguiname"] = "ImFontAtlas_destroy" defs["ImFontAtlas_destroy"][1]["defaults"] = {} defs["ImFontAtlas_destroy"][1]["destructor"] = true +defs["ImFontAtlas_destroy"][1]["location"] = "imgui:2302" defs["ImFontAtlas_destroy"][1]["ov_cimguiname"] = "ImFontAtlas_destroy" +defs["ImFontAtlas_destroy"][1]["realdestructor"] = true defs["ImFontAtlas_destroy"][1]["ret"] = "void" defs["ImFontAtlas_destroy"][1]["signature"] = "(ImFontAtlas*)" defs["ImFontAtlas_destroy"][1]["stname"] = "ImFontAtlas" @@ -3182,7 +3190,7 @@ defs["ImFontConfig_ImFontConfig"][1]["cimguiname"] = "ImFontConfig_ImFontConfig" defs["ImFontConfig_ImFontConfig"][1]["constructor"] = true defs["ImFontConfig_ImFontConfig"][1]["defaults"] = {} defs["ImFontConfig_ImFontConfig"][1]["funcname"] = "ImFontConfig" -defs["ImFontConfig_ImFontConfig"][1]["location"] = "imgui" +defs["ImFontConfig_ImFontConfig"][1]["location"] = "imgui:2230" defs["ImFontConfig_ImFontConfig"][1]["ov_cimguiname"] = "ImFontConfig_ImFontConfig" defs["ImFontConfig_ImFontConfig"][1]["signature"] = "()" defs["ImFontConfig_ImFontConfig"][1]["stname"] = "ImFontConfig" @@ -3218,7 +3226,7 @@ defs["ImFontGlyphRangesBuilder_AddChar"][1]["call_args"] = "(c)" defs["ImFontGlyphRangesBuilder_AddChar"][1]["cimguiname"] = "ImFontGlyphRangesBuilder_AddChar" defs["ImFontGlyphRangesBuilder_AddChar"][1]["defaults"] = {} defs["ImFontGlyphRangesBuilder_AddChar"][1]["funcname"] = "AddChar" -defs["ImFontGlyphRangesBuilder_AddChar"][1]["location"] = "imgui" +defs["ImFontGlyphRangesBuilder_AddChar"][1]["location"] = "imgui:2254" defs["ImFontGlyphRangesBuilder_AddChar"][1]["ov_cimguiname"] = "ImFontGlyphRangesBuilder_AddChar" defs["ImFontGlyphRangesBuilder_AddChar"][1]["ret"] = "void" defs["ImFontGlyphRangesBuilder_AddChar"][1]["signature"] = "(ImWchar)" @@ -3239,7 +3247,7 @@ defs["ImFontGlyphRangesBuilder_AddRanges"][1]["call_args"] = "(ranges)" defs["ImFontGlyphRangesBuilder_AddRanges"][1]["cimguiname"] = "ImFontGlyphRangesBuilder_AddRanges" defs["ImFontGlyphRangesBuilder_AddRanges"][1]["defaults"] = {} defs["ImFontGlyphRangesBuilder_AddRanges"][1]["funcname"] = "AddRanges" -defs["ImFontGlyphRangesBuilder_AddRanges"][1]["location"] = "imgui" +defs["ImFontGlyphRangesBuilder_AddRanges"][1]["location"] = "imgui:2256" defs["ImFontGlyphRangesBuilder_AddRanges"][1]["ov_cimguiname"] = "ImFontGlyphRangesBuilder_AddRanges" defs["ImFontGlyphRangesBuilder_AddRanges"][1]["ret"] = "void" defs["ImFontGlyphRangesBuilder_AddRanges"][1]["signature"] = "(const ImWchar*)" @@ -3262,9 +3270,9 @@ defs["ImFontGlyphRangesBuilder_AddText"][1]["argsoriginal"] = "(const char* text defs["ImFontGlyphRangesBuilder_AddText"][1]["call_args"] = "(text,text_end)" defs["ImFontGlyphRangesBuilder_AddText"][1]["cimguiname"] = "ImFontGlyphRangesBuilder_AddText" defs["ImFontGlyphRangesBuilder_AddText"][1]["defaults"] = {} -defs["ImFontGlyphRangesBuilder_AddText"][1]["defaults"]["text_end"] = "((void*)0)" +defs["ImFontGlyphRangesBuilder_AddText"][1]["defaults"]["text_end"] = "NULL" defs["ImFontGlyphRangesBuilder_AddText"][1]["funcname"] = "AddText" -defs["ImFontGlyphRangesBuilder_AddText"][1]["location"] = "imgui" +defs["ImFontGlyphRangesBuilder_AddText"][1]["location"] = "imgui:2255" defs["ImFontGlyphRangesBuilder_AddText"][1]["ov_cimguiname"] = "ImFontGlyphRangesBuilder_AddText" defs["ImFontGlyphRangesBuilder_AddText"][1]["ret"] = "void" defs["ImFontGlyphRangesBuilder_AddText"][1]["signature"] = "(const char*,const char*)" @@ -3285,7 +3293,7 @@ defs["ImFontGlyphRangesBuilder_BuildRanges"][1]["call_args"] = "(out_ranges)" defs["ImFontGlyphRangesBuilder_BuildRanges"][1]["cimguiname"] = "ImFontGlyphRangesBuilder_BuildRanges" defs["ImFontGlyphRangesBuilder_BuildRanges"][1]["defaults"] = {} defs["ImFontGlyphRangesBuilder_BuildRanges"][1]["funcname"] = "BuildRanges" -defs["ImFontGlyphRangesBuilder_BuildRanges"][1]["location"] = "imgui" +defs["ImFontGlyphRangesBuilder_BuildRanges"][1]["location"] = "imgui:2257" defs["ImFontGlyphRangesBuilder_BuildRanges"][1]["ov_cimguiname"] = "ImFontGlyphRangesBuilder_BuildRanges" defs["ImFontGlyphRangesBuilder_BuildRanges"][1]["ret"] = "void" defs["ImFontGlyphRangesBuilder_BuildRanges"][1]["signature"] = "(ImVector_ImWchar*)" @@ -3303,7 +3311,7 @@ defs["ImFontGlyphRangesBuilder_Clear"][1]["call_args"] = "()" defs["ImFontGlyphRangesBuilder_Clear"][1]["cimguiname"] = "ImFontGlyphRangesBuilder_Clear" defs["ImFontGlyphRangesBuilder_Clear"][1]["defaults"] = {} defs["ImFontGlyphRangesBuilder_Clear"][1]["funcname"] = "Clear" -defs["ImFontGlyphRangesBuilder_Clear"][1]["location"] = "imgui" +defs["ImFontGlyphRangesBuilder_Clear"][1]["location"] = "imgui:2251" defs["ImFontGlyphRangesBuilder_Clear"][1]["ov_cimguiname"] = "ImFontGlyphRangesBuilder_Clear" defs["ImFontGlyphRangesBuilder_Clear"][1]["ret"] = "void" defs["ImFontGlyphRangesBuilder_Clear"][1]["signature"] = "()" @@ -3324,7 +3332,7 @@ defs["ImFontGlyphRangesBuilder_GetBit"][1]["call_args"] = "(n)" defs["ImFontGlyphRangesBuilder_GetBit"][1]["cimguiname"] = "ImFontGlyphRangesBuilder_GetBit" defs["ImFontGlyphRangesBuilder_GetBit"][1]["defaults"] = {} defs["ImFontGlyphRangesBuilder_GetBit"][1]["funcname"] = "GetBit" -defs["ImFontGlyphRangesBuilder_GetBit"][1]["location"] = "imgui" +defs["ImFontGlyphRangesBuilder_GetBit"][1]["location"] = "imgui:2252" defs["ImFontGlyphRangesBuilder_GetBit"][1]["ov_cimguiname"] = "ImFontGlyphRangesBuilder_GetBit" defs["ImFontGlyphRangesBuilder_GetBit"][1]["ret"] = "bool" defs["ImFontGlyphRangesBuilder_GetBit"][1]["signature"] = "(size_t)const" @@ -3340,7 +3348,7 @@ defs["ImFontGlyphRangesBuilder_ImFontGlyphRangesBuilder"][1]["cimguiname"] = "Im defs["ImFontGlyphRangesBuilder_ImFontGlyphRangesBuilder"][1]["constructor"] = true defs["ImFontGlyphRangesBuilder_ImFontGlyphRangesBuilder"][1]["defaults"] = {} defs["ImFontGlyphRangesBuilder_ImFontGlyphRangesBuilder"][1]["funcname"] = "ImFontGlyphRangesBuilder" -defs["ImFontGlyphRangesBuilder_ImFontGlyphRangesBuilder"][1]["location"] = "imgui" +defs["ImFontGlyphRangesBuilder_ImFontGlyphRangesBuilder"][1]["location"] = "imgui:2250" defs["ImFontGlyphRangesBuilder_ImFontGlyphRangesBuilder"][1]["ov_cimguiname"] = "ImFontGlyphRangesBuilder_ImFontGlyphRangesBuilder" defs["ImFontGlyphRangesBuilder_ImFontGlyphRangesBuilder"][1]["signature"] = "()" defs["ImFontGlyphRangesBuilder_ImFontGlyphRangesBuilder"][1]["stname"] = "ImFontGlyphRangesBuilder" @@ -3360,7 +3368,7 @@ defs["ImFontGlyphRangesBuilder_SetBit"][1]["call_args"] = "(n)" defs["ImFontGlyphRangesBuilder_SetBit"][1]["cimguiname"] = "ImFontGlyphRangesBuilder_SetBit" defs["ImFontGlyphRangesBuilder_SetBit"][1]["defaults"] = {} defs["ImFontGlyphRangesBuilder_SetBit"][1]["funcname"] = "SetBit" -defs["ImFontGlyphRangesBuilder_SetBit"][1]["location"] = "imgui" +defs["ImFontGlyphRangesBuilder_SetBit"][1]["location"] = "imgui:2253" defs["ImFontGlyphRangesBuilder_SetBit"][1]["ov_cimguiname"] = "ImFontGlyphRangesBuilder_SetBit" defs["ImFontGlyphRangesBuilder_SetBit"][1]["ret"] = "void" defs["ImFontGlyphRangesBuilder_SetBit"][1]["signature"] = "(size_t)" @@ -3427,7 +3435,7 @@ defs["ImFont_AddGlyph"][1]["call_args"] = "(src_cfg,c,x0,y0,x1,y1,u0,v0,u1,v1,ad defs["ImFont_AddGlyph"][1]["cimguiname"] = "ImFont_AddGlyph" defs["ImFont_AddGlyph"][1]["defaults"] = {} defs["ImFont_AddGlyph"][1]["funcname"] = "AddGlyph" -defs["ImFont_AddGlyph"][1]["location"] = "imgui" +defs["ImFont_AddGlyph"][1]["location"] = "imgui:2439" defs["ImFont_AddGlyph"][1]["ov_cimguiname"] = "ImFont_AddGlyph" defs["ImFont_AddGlyph"][1]["ret"] = "void" defs["ImFont_AddGlyph"][1]["signature"] = "(ImFontConfig*,ImWchar,float,float,float,float,float,float,float,float,float)" @@ -3455,7 +3463,7 @@ defs["ImFont_AddRemapChar"][1]["cimguiname"] = "ImFont_AddRemapChar" defs["ImFont_AddRemapChar"][1]["defaults"] = {} defs["ImFont_AddRemapChar"][1]["defaults"]["overwrite_dst"] = "true" defs["ImFont_AddRemapChar"][1]["funcname"] = "AddRemapChar" -defs["ImFont_AddRemapChar"][1]["location"] = "imgui" +defs["ImFont_AddRemapChar"][1]["location"] = "imgui:2440" defs["ImFont_AddRemapChar"][1]["ov_cimguiname"] = "ImFont_AddRemapChar" defs["ImFont_AddRemapChar"][1]["ret"] = "void" defs["ImFont_AddRemapChar"][1]["signature"] = "(ImWchar,ImWchar,bool)" @@ -3473,7 +3481,7 @@ defs["ImFont_BuildLookupTable"][1]["call_args"] = "()" defs["ImFont_BuildLookupTable"][1]["cimguiname"] = "ImFont_BuildLookupTable" defs["ImFont_BuildLookupTable"][1]["defaults"] = {} defs["ImFont_BuildLookupTable"][1]["funcname"] = "BuildLookupTable" -defs["ImFont_BuildLookupTable"][1]["location"] = "imgui" +defs["ImFont_BuildLookupTable"][1]["location"] = "imgui:2436" defs["ImFont_BuildLookupTable"][1]["ov_cimguiname"] = "ImFont_BuildLookupTable" defs["ImFont_BuildLookupTable"][1]["ret"] = "void" defs["ImFont_BuildLookupTable"][1]["signature"] = "()" @@ -3511,10 +3519,10 @@ defs["ImFont_CalcTextSizeA"][1]["argsoriginal"] = "(float size,float max_width,f defs["ImFont_CalcTextSizeA"][1]["call_args"] = "(size,max_width,wrap_width,text_begin,text_end,remaining)" defs["ImFont_CalcTextSizeA"][1]["cimguiname"] = "ImFont_CalcTextSizeA" defs["ImFont_CalcTextSizeA"][1]["defaults"] = {} -defs["ImFont_CalcTextSizeA"][1]["defaults"]["remaining"] = "((void*)0)" -defs["ImFont_CalcTextSizeA"][1]["defaults"]["text_end"] = "((void*)0)" +defs["ImFont_CalcTextSizeA"][1]["defaults"]["remaining"] = "NULL" +defs["ImFont_CalcTextSizeA"][1]["defaults"]["text_end"] = "NULL" defs["ImFont_CalcTextSizeA"][1]["funcname"] = "CalcTextSizeA" -defs["ImFont_CalcTextSizeA"][1]["location"] = "imgui" +defs["ImFont_CalcTextSizeA"][1]["location"] = "imgui:2430" defs["ImFont_CalcTextSizeA"][1]["nonUDT"] = 1 defs["ImFont_CalcTextSizeA"][1]["ov_cimguiname"] = "ImFont_CalcTextSizeA" defs["ImFont_CalcTextSizeA"][1]["ret"] = "void" @@ -3545,7 +3553,7 @@ defs["ImFont_CalcWordWrapPositionA"][1]["call_args"] = "(scale,text,text_end,wra defs["ImFont_CalcWordWrapPositionA"][1]["cimguiname"] = "ImFont_CalcWordWrapPositionA" defs["ImFont_CalcWordWrapPositionA"][1]["defaults"] = {} defs["ImFont_CalcWordWrapPositionA"][1]["funcname"] = "CalcWordWrapPositionA" -defs["ImFont_CalcWordWrapPositionA"][1]["location"] = "imgui" +defs["ImFont_CalcWordWrapPositionA"][1]["location"] = "imgui:2431" defs["ImFont_CalcWordWrapPositionA"][1]["ov_cimguiname"] = "ImFont_CalcWordWrapPositionA" defs["ImFont_CalcWordWrapPositionA"][1]["ret"] = "const char*" defs["ImFont_CalcWordWrapPositionA"][1]["signature"] = "(float,const char*,const char*,float)const" @@ -3563,7 +3571,7 @@ defs["ImFont_ClearOutputData"][1]["call_args"] = "()" defs["ImFont_ClearOutputData"][1]["cimguiname"] = "ImFont_ClearOutputData" defs["ImFont_ClearOutputData"][1]["defaults"] = {} defs["ImFont_ClearOutputData"][1]["funcname"] = "ClearOutputData" -defs["ImFont_ClearOutputData"][1]["location"] = "imgui" +defs["ImFont_ClearOutputData"][1]["location"] = "imgui:2437" defs["ImFont_ClearOutputData"][1]["ov_cimguiname"] = "ImFont_ClearOutputData" defs["ImFont_ClearOutputData"][1]["ret"] = "void" defs["ImFont_ClearOutputData"][1]["signature"] = "()" @@ -3584,7 +3592,7 @@ defs["ImFont_FindGlyph"][1]["call_args"] = "(c)" defs["ImFont_FindGlyph"][1]["cimguiname"] = "ImFont_FindGlyph" defs["ImFont_FindGlyph"][1]["defaults"] = {} defs["ImFont_FindGlyph"][1]["funcname"] = "FindGlyph" -defs["ImFont_FindGlyph"][1]["location"] = "imgui" +defs["ImFont_FindGlyph"][1]["location"] = "imgui:2422" defs["ImFont_FindGlyph"][1]["ov_cimguiname"] = "ImFont_FindGlyph" defs["ImFont_FindGlyph"][1]["ret"] = "const ImFontGlyph*" defs["ImFont_FindGlyph"][1]["signature"] = "(ImWchar)const" @@ -3605,7 +3613,7 @@ defs["ImFont_FindGlyphNoFallback"][1]["call_args"] = "(c)" defs["ImFont_FindGlyphNoFallback"][1]["cimguiname"] = "ImFont_FindGlyphNoFallback" defs["ImFont_FindGlyphNoFallback"][1]["defaults"] = {} defs["ImFont_FindGlyphNoFallback"][1]["funcname"] = "FindGlyphNoFallback" -defs["ImFont_FindGlyphNoFallback"][1]["location"] = "imgui" +defs["ImFont_FindGlyphNoFallback"][1]["location"] = "imgui:2423" defs["ImFont_FindGlyphNoFallback"][1]["ov_cimguiname"] = "ImFont_FindGlyphNoFallback" defs["ImFont_FindGlyphNoFallback"][1]["ret"] = "const ImFontGlyph*" defs["ImFont_FindGlyphNoFallback"][1]["signature"] = "(ImWchar)const" @@ -3626,7 +3634,7 @@ defs["ImFont_GetCharAdvance"][1]["call_args"] = "(c)" defs["ImFont_GetCharAdvance"][1]["cimguiname"] = "ImFont_GetCharAdvance" defs["ImFont_GetCharAdvance"][1]["defaults"] = {} defs["ImFont_GetCharAdvance"][1]["funcname"] = "GetCharAdvance" -defs["ImFont_GetCharAdvance"][1]["location"] = "imgui" +defs["ImFont_GetCharAdvance"][1]["location"] = "imgui:2424" defs["ImFont_GetCharAdvance"][1]["ov_cimguiname"] = "ImFont_GetCharAdvance" defs["ImFont_GetCharAdvance"][1]["ret"] = "float" defs["ImFont_GetCharAdvance"][1]["signature"] = "(ImWchar)const" @@ -3644,7 +3652,7 @@ defs["ImFont_GetDebugName"][1]["call_args"] = "()" defs["ImFont_GetDebugName"][1]["cimguiname"] = "ImFont_GetDebugName" defs["ImFont_GetDebugName"][1]["defaults"] = {} defs["ImFont_GetDebugName"][1]["funcname"] = "GetDebugName" -defs["ImFont_GetDebugName"][1]["location"] = "imgui" +defs["ImFont_GetDebugName"][1]["location"] = "imgui:2426" defs["ImFont_GetDebugName"][1]["ov_cimguiname"] = "ImFont_GetDebugName" defs["ImFont_GetDebugName"][1]["ret"] = "const char*" defs["ImFont_GetDebugName"][1]["signature"] = "()const" @@ -3665,7 +3673,7 @@ defs["ImFont_GrowIndex"][1]["call_args"] = "(new_size)" defs["ImFont_GrowIndex"][1]["cimguiname"] = "ImFont_GrowIndex" defs["ImFont_GrowIndex"][1]["defaults"] = {} defs["ImFont_GrowIndex"][1]["funcname"] = "GrowIndex" -defs["ImFont_GrowIndex"][1]["location"] = "imgui" +defs["ImFont_GrowIndex"][1]["location"] = "imgui:2438" defs["ImFont_GrowIndex"][1]["ov_cimguiname"] = "ImFont_GrowIndex" defs["ImFont_GrowIndex"][1]["ret"] = "void" defs["ImFont_GrowIndex"][1]["signature"] = "(int)" @@ -3681,7 +3689,7 @@ defs["ImFont_ImFont"][1]["cimguiname"] = "ImFont_ImFont" defs["ImFont_ImFont"][1]["constructor"] = true defs["ImFont_ImFont"][1]["defaults"] = {} defs["ImFont_ImFont"][1]["funcname"] = "ImFont" -defs["ImFont_ImFont"][1]["location"] = "imgui" +defs["ImFont_ImFont"][1]["location"] = "imgui:2420" defs["ImFont_ImFont"][1]["ov_cimguiname"] = "ImFont_ImFont" defs["ImFont_ImFont"][1]["signature"] = "()" defs["ImFont_ImFont"][1]["stname"] = "ImFont" @@ -3704,7 +3712,7 @@ defs["ImFont_IsGlyphRangeUnused"][1]["call_args"] = "(c_begin,c_last)" defs["ImFont_IsGlyphRangeUnused"][1]["cimguiname"] = "ImFont_IsGlyphRangeUnused" defs["ImFont_IsGlyphRangeUnused"][1]["defaults"] = {} defs["ImFont_IsGlyphRangeUnused"][1]["funcname"] = "IsGlyphRangeUnused" -defs["ImFont_IsGlyphRangeUnused"][1]["location"] = "imgui" +defs["ImFont_IsGlyphRangeUnused"][1]["location"] = "imgui:2443" defs["ImFont_IsGlyphRangeUnused"][1]["ov_cimguiname"] = "ImFont_IsGlyphRangeUnused" defs["ImFont_IsGlyphRangeUnused"][1]["ret"] = "bool" defs["ImFont_IsGlyphRangeUnused"][1]["signature"] = "(unsigned int,unsigned int)" @@ -3722,7 +3730,7 @@ defs["ImFont_IsLoaded"][1]["call_args"] = "()" defs["ImFont_IsLoaded"][1]["cimguiname"] = "ImFont_IsLoaded" defs["ImFont_IsLoaded"][1]["defaults"] = {} defs["ImFont_IsLoaded"][1]["funcname"] = "IsLoaded" -defs["ImFont_IsLoaded"][1]["location"] = "imgui" +defs["ImFont_IsLoaded"][1]["location"] = "imgui:2425" defs["ImFont_IsLoaded"][1]["ov_cimguiname"] = "ImFont_IsLoaded" defs["ImFont_IsLoaded"][1]["ret"] = "bool" defs["ImFont_IsLoaded"][1]["signature"] = "()const" @@ -3755,7 +3763,7 @@ defs["ImFont_RenderChar"][1]["call_args"] = "(draw_list,size,pos,col,c)" defs["ImFont_RenderChar"][1]["cimguiname"] = "ImFont_RenderChar" defs["ImFont_RenderChar"][1]["defaults"] = {} defs["ImFont_RenderChar"][1]["funcname"] = "RenderChar" -defs["ImFont_RenderChar"][1]["location"] = "imgui" +defs["ImFont_RenderChar"][1]["location"] = "imgui:2432" defs["ImFont_RenderChar"][1]["ov_cimguiname"] = "ImFont_RenderChar" defs["ImFont_RenderChar"][1]["ret"] = "void" defs["ImFont_RenderChar"][1]["signature"] = "(ImDrawList*,float,ImVec2,ImU32,ImWchar)const" @@ -3802,7 +3810,7 @@ defs["ImFont_RenderText"][1]["defaults"] = {} defs["ImFont_RenderText"][1]["defaults"]["cpu_fine_clip"] = "false" defs["ImFont_RenderText"][1]["defaults"]["wrap_width"] = "0.0f" defs["ImFont_RenderText"][1]["funcname"] = "RenderText" -defs["ImFont_RenderText"][1]["location"] = "imgui" +defs["ImFont_RenderText"][1]["location"] = "imgui:2433" defs["ImFont_RenderText"][1]["ov_cimguiname"] = "ImFont_RenderText" defs["ImFont_RenderText"][1]["ret"] = "void" defs["ImFont_RenderText"][1]["signature"] = "(ImDrawList*,float,ImVec2,ImU32,const ImVec4,const char*,const char*,float,bool)const" @@ -3823,7 +3831,7 @@ defs["ImFont_SetFallbackChar"][1]["call_args"] = "(c)" defs["ImFont_SetFallbackChar"][1]["cimguiname"] = "ImFont_SetFallbackChar" defs["ImFont_SetFallbackChar"][1]["defaults"] = {} defs["ImFont_SetFallbackChar"][1]["funcname"] = "SetFallbackChar" -defs["ImFont_SetFallbackChar"][1]["location"] = "imgui" +defs["ImFont_SetFallbackChar"][1]["location"] = "imgui:2442" defs["ImFont_SetFallbackChar"][1]["ov_cimguiname"] = "ImFont_SetFallbackChar" defs["ImFont_SetFallbackChar"][1]["ret"] = "void" defs["ImFont_SetFallbackChar"][1]["signature"] = "(ImWchar)" @@ -3847,7 +3855,7 @@ defs["ImFont_SetGlyphVisible"][1]["call_args"] = "(c,visible)" defs["ImFont_SetGlyphVisible"][1]["cimguiname"] = "ImFont_SetGlyphVisible" defs["ImFont_SetGlyphVisible"][1]["defaults"] = {} defs["ImFont_SetGlyphVisible"][1]["funcname"] = "SetGlyphVisible" -defs["ImFont_SetGlyphVisible"][1]["location"] = "imgui" +defs["ImFont_SetGlyphVisible"][1]["location"] = "imgui:2441" defs["ImFont_SetGlyphVisible"][1]["ov_cimguiname"] = "ImFont_SetGlyphVisible" defs["ImFont_SetGlyphVisible"][1]["ret"] = "void" defs["ImFont_SetGlyphVisible"][1]["signature"] = "(ImWchar,bool)" @@ -3864,7 +3872,9 @@ defs["ImFont_destroy"][1]["call_args"] = "(self)" defs["ImFont_destroy"][1]["cimguiname"] = "ImFont_destroy" defs["ImFont_destroy"][1]["defaults"] = {} defs["ImFont_destroy"][1]["destructor"] = true +defs["ImFont_destroy"][1]["location"] = "imgui:2421" defs["ImFont_destroy"][1]["ov_cimguiname"] = "ImFont_destroy" +defs["ImFont_destroy"][1]["realdestructor"] = true defs["ImFont_destroy"][1]["ret"] = "void" defs["ImFont_destroy"][1]["signature"] = "(ImFont*)" defs["ImFont_destroy"][1]["stname"] = "ImFont" @@ -3879,7 +3889,7 @@ defs["ImGuiColumnData_ImGuiColumnData"][1]["cimguiname"] = "ImGuiColumnData_ImGu defs["ImGuiColumnData_ImGuiColumnData"][1]["constructor"] = true defs["ImGuiColumnData_ImGuiColumnData"][1]["defaults"] = {} defs["ImGuiColumnData_ImGuiColumnData"][1]["funcname"] = "ImGuiColumnData" -defs["ImGuiColumnData_ImGuiColumnData"][1]["location"] = "internal" +defs["ImGuiColumnData_ImGuiColumnData"][1]["location"] = "imgui_internal:1000" defs["ImGuiColumnData_ImGuiColumnData"][1]["ov_cimguiname"] = "ImGuiColumnData_ImGuiColumnData" defs["ImGuiColumnData_ImGuiColumnData"][1]["signature"] = "()" defs["ImGuiColumnData_ImGuiColumnData"][1]["stname"] = "ImGuiColumnData" @@ -3912,7 +3922,7 @@ defs["ImGuiColumns_Clear"][1]["call_args"] = "()" defs["ImGuiColumns_Clear"][1]["cimguiname"] = "ImGuiColumns_Clear" defs["ImGuiColumns_Clear"][1]["defaults"] = {} defs["ImGuiColumns_Clear"][1]["funcname"] = "Clear" -defs["ImGuiColumns_Clear"][1]["location"] = "internal" +defs["ImGuiColumns_Clear"][1]["location"] = "imgui_internal:1022" defs["ImGuiColumns_Clear"][1]["ov_cimguiname"] = "ImGuiColumns_Clear" defs["ImGuiColumns_Clear"][1]["ret"] = "void" defs["ImGuiColumns_Clear"][1]["signature"] = "()" @@ -3928,7 +3938,7 @@ defs["ImGuiColumns_ImGuiColumns"][1]["cimguiname"] = "ImGuiColumns_ImGuiColumns" defs["ImGuiColumns_ImGuiColumns"][1]["constructor"] = true defs["ImGuiColumns_ImGuiColumns"][1]["defaults"] = {} defs["ImGuiColumns_ImGuiColumns"][1]["funcname"] = "ImGuiColumns" -defs["ImGuiColumns_ImGuiColumns"][1]["location"] = "internal" +defs["ImGuiColumns_ImGuiColumns"][1]["location"] = "imgui_internal:1021" defs["ImGuiColumns_ImGuiColumns"][1]["ov_cimguiname"] = "ImGuiColumns_ImGuiColumns" defs["ImGuiColumns_ImGuiColumns"][1]["signature"] = "()" defs["ImGuiColumns_ImGuiColumns"][1]["stname"] = "ImGuiColumns" @@ -3962,7 +3972,7 @@ defs["ImGuiContext_ImGuiContext"][1]["cimguiname"] = "ImGuiContext_ImGuiContext" defs["ImGuiContext_ImGuiContext"][1]["constructor"] = true defs["ImGuiContext_ImGuiContext"][1]["defaults"] = {} defs["ImGuiContext_ImGuiContext"][1]["funcname"] = "ImGuiContext" -defs["ImGuiContext_ImGuiContext"][1]["location"] = "internal" +defs["ImGuiContext_ImGuiContext"][1]["location"] = "imgui_internal:1323" defs["ImGuiContext_ImGuiContext"][1]["ov_cimguiname"] = "ImGuiContext_ImGuiContext" defs["ImGuiContext_ImGuiContext"][1]["signature"] = "(ImFontAtlas*)" defs["ImGuiContext_ImGuiContext"][1]["stname"] = "ImGuiContext" @@ -3998,7 +4008,7 @@ defs["ImGuiIO_AddInputCharacter"][1]["call_args"] = "(c)" defs["ImGuiIO_AddInputCharacter"][1]["cimguiname"] = "ImGuiIO_AddInputCharacter" defs["ImGuiIO_AddInputCharacter"][1]["defaults"] = {} defs["ImGuiIO_AddInputCharacter"][1]["funcname"] = "AddInputCharacter" -defs["ImGuiIO_AddInputCharacter"][1]["location"] = "imgui" +defs["ImGuiIO_AddInputCharacter"][1]["location"] = "imgui:1576" defs["ImGuiIO_AddInputCharacter"][1]["ov_cimguiname"] = "ImGuiIO_AddInputCharacter" defs["ImGuiIO_AddInputCharacter"][1]["ret"] = "void" defs["ImGuiIO_AddInputCharacter"][1]["signature"] = "(unsigned int)" @@ -4019,7 +4029,7 @@ defs["ImGuiIO_AddInputCharacterUTF16"][1]["call_args"] = "(c)" defs["ImGuiIO_AddInputCharacterUTF16"][1]["cimguiname"] = "ImGuiIO_AddInputCharacterUTF16" defs["ImGuiIO_AddInputCharacterUTF16"][1]["defaults"] = {} defs["ImGuiIO_AddInputCharacterUTF16"][1]["funcname"] = "AddInputCharacterUTF16" -defs["ImGuiIO_AddInputCharacterUTF16"][1]["location"] = "imgui" +defs["ImGuiIO_AddInputCharacterUTF16"][1]["location"] = "imgui:1577" defs["ImGuiIO_AddInputCharacterUTF16"][1]["ov_cimguiname"] = "ImGuiIO_AddInputCharacterUTF16" defs["ImGuiIO_AddInputCharacterUTF16"][1]["ret"] = "void" defs["ImGuiIO_AddInputCharacterUTF16"][1]["signature"] = "(ImWchar16)" @@ -4040,7 +4050,7 @@ defs["ImGuiIO_AddInputCharactersUTF8"][1]["call_args"] = "(str)" defs["ImGuiIO_AddInputCharactersUTF8"][1]["cimguiname"] = "ImGuiIO_AddInputCharactersUTF8" defs["ImGuiIO_AddInputCharactersUTF8"][1]["defaults"] = {} defs["ImGuiIO_AddInputCharactersUTF8"][1]["funcname"] = "AddInputCharactersUTF8" -defs["ImGuiIO_AddInputCharactersUTF8"][1]["location"] = "imgui" +defs["ImGuiIO_AddInputCharactersUTF8"][1]["location"] = "imgui:1578" defs["ImGuiIO_AddInputCharactersUTF8"][1]["ov_cimguiname"] = "ImGuiIO_AddInputCharactersUTF8" defs["ImGuiIO_AddInputCharactersUTF8"][1]["ret"] = "void" defs["ImGuiIO_AddInputCharactersUTF8"][1]["signature"] = "(const char*)" @@ -4058,7 +4068,7 @@ defs["ImGuiIO_ClearInputCharacters"][1]["call_args"] = "()" defs["ImGuiIO_ClearInputCharacters"][1]["cimguiname"] = "ImGuiIO_ClearInputCharacters" defs["ImGuiIO_ClearInputCharacters"][1]["defaults"] = {} defs["ImGuiIO_ClearInputCharacters"][1]["funcname"] = "ClearInputCharacters" -defs["ImGuiIO_ClearInputCharacters"][1]["location"] = "imgui" +defs["ImGuiIO_ClearInputCharacters"][1]["location"] = "imgui:1579" defs["ImGuiIO_ClearInputCharacters"][1]["ov_cimguiname"] = "ImGuiIO_ClearInputCharacters" defs["ImGuiIO_ClearInputCharacters"][1]["ret"] = "void" defs["ImGuiIO_ClearInputCharacters"][1]["signature"] = "()" @@ -4074,7 +4084,7 @@ defs["ImGuiIO_ImGuiIO"][1]["cimguiname"] = "ImGuiIO_ImGuiIO" defs["ImGuiIO_ImGuiIO"][1]["constructor"] = true defs["ImGuiIO_ImGuiIO"][1]["defaults"] = {} defs["ImGuiIO_ImGuiIO"][1]["funcname"] = "ImGuiIO" -defs["ImGuiIO_ImGuiIO"][1]["location"] = "imgui" +defs["ImGuiIO_ImGuiIO"][1]["location"] = "imgui:1627" defs["ImGuiIO_ImGuiIO"][1]["ov_cimguiname"] = "ImGuiIO_ImGuiIO" defs["ImGuiIO_ImGuiIO"][1]["signature"] = "()" defs["ImGuiIO_ImGuiIO"][1]["stname"] = "ImGuiIO" @@ -4113,7 +4123,7 @@ defs["ImGuiInputTextCallbackData_DeleteChars"][1]["call_args"] = "(pos,bytes_cou defs["ImGuiInputTextCallbackData_DeleteChars"][1]["cimguiname"] = "ImGuiInputTextCallbackData_DeleteChars" defs["ImGuiInputTextCallbackData_DeleteChars"][1]["defaults"] = {} defs["ImGuiInputTextCallbackData_DeleteChars"][1]["funcname"] = "DeleteChars" -defs["ImGuiInputTextCallbackData_DeleteChars"][1]["location"] = "imgui" +defs["ImGuiInputTextCallbackData_DeleteChars"][1]["location"] = "imgui:1664" defs["ImGuiInputTextCallbackData_DeleteChars"][1]["ov_cimguiname"] = "ImGuiInputTextCallbackData_DeleteChars" defs["ImGuiInputTextCallbackData_DeleteChars"][1]["ret"] = "void" defs["ImGuiInputTextCallbackData_DeleteChars"][1]["signature"] = "(int,int)" @@ -4131,7 +4141,7 @@ defs["ImGuiInputTextCallbackData_HasSelection"][1]["call_args"] = "()" defs["ImGuiInputTextCallbackData_HasSelection"][1]["cimguiname"] = "ImGuiInputTextCallbackData_HasSelection" defs["ImGuiInputTextCallbackData_HasSelection"][1]["defaults"] = {} defs["ImGuiInputTextCallbackData_HasSelection"][1]["funcname"] = "HasSelection" -defs["ImGuiInputTextCallbackData_HasSelection"][1]["location"] = "imgui" +defs["ImGuiInputTextCallbackData_HasSelection"][1]["location"] = "imgui:1666" defs["ImGuiInputTextCallbackData_HasSelection"][1]["ov_cimguiname"] = "ImGuiInputTextCallbackData_HasSelection" defs["ImGuiInputTextCallbackData_HasSelection"][1]["ret"] = "bool" defs["ImGuiInputTextCallbackData_HasSelection"][1]["signature"] = "()const" @@ -4147,7 +4157,7 @@ defs["ImGuiInputTextCallbackData_ImGuiInputTextCallbackData"][1]["cimguiname"] = defs["ImGuiInputTextCallbackData_ImGuiInputTextCallbackData"][1]["constructor"] = true defs["ImGuiInputTextCallbackData_ImGuiInputTextCallbackData"][1]["defaults"] = {} defs["ImGuiInputTextCallbackData_ImGuiInputTextCallbackData"][1]["funcname"] = "ImGuiInputTextCallbackData" -defs["ImGuiInputTextCallbackData_ImGuiInputTextCallbackData"][1]["location"] = "imgui" +defs["ImGuiInputTextCallbackData_ImGuiInputTextCallbackData"][1]["location"] = "imgui:1663" defs["ImGuiInputTextCallbackData_ImGuiInputTextCallbackData"][1]["ov_cimguiname"] = "ImGuiInputTextCallbackData_ImGuiInputTextCallbackData" defs["ImGuiInputTextCallbackData_ImGuiInputTextCallbackData"][1]["signature"] = "()" defs["ImGuiInputTextCallbackData_ImGuiInputTextCallbackData"][1]["stname"] = "ImGuiInputTextCallbackData" @@ -4172,9 +4182,9 @@ defs["ImGuiInputTextCallbackData_InsertChars"][1]["argsoriginal"] = "(int pos,co defs["ImGuiInputTextCallbackData_InsertChars"][1]["call_args"] = "(pos,text,text_end)" defs["ImGuiInputTextCallbackData_InsertChars"][1]["cimguiname"] = "ImGuiInputTextCallbackData_InsertChars" defs["ImGuiInputTextCallbackData_InsertChars"][1]["defaults"] = {} -defs["ImGuiInputTextCallbackData_InsertChars"][1]["defaults"]["text_end"] = "((void*)0)" +defs["ImGuiInputTextCallbackData_InsertChars"][1]["defaults"]["text_end"] = "NULL" defs["ImGuiInputTextCallbackData_InsertChars"][1]["funcname"] = "InsertChars" -defs["ImGuiInputTextCallbackData_InsertChars"][1]["location"] = "imgui" +defs["ImGuiInputTextCallbackData_InsertChars"][1]["location"] = "imgui:1665" defs["ImGuiInputTextCallbackData_InsertChars"][1]["ov_cimguiname"] = "ImGuiInputTextCallbackData_InsertChars" defs["ImGuiInputTextCallbackData_InsertChars"][1]["ret"] = "void" defs["ImGuiInputTextCallbackData_InsertChars"][1]["signature"] = "(int,const char*,const char*)" @@ -4208,7 +4218,7 @@ defs["ImGuiInputTextState_ClearFreeMemory"][1]["call_args"] = "()" defs["ImGuiInputTextState_ClearFreeMemory"][1]["cimguiname"] = "ImGuiInputTextState_ClearFreeMemory" defs["ImGuiInputTextState_ClearFreeMemory"][1]["defaults"] = {} defs["ImGuiInputTextState_ClearFreeMemory"][1]["funcname"] = "ClearFreeMemory" -defs["ImGuiInputTextState_ClearFreeMemory"][1]["location"] = "internal" +defs["ImGuiInputTextState_ClearFreeMemory"][1]["location"] = "imgui_internal:867" defs["ImGuiInputTextState_ClearFreeMemory"][1]["ov_cimguiname"] = "ImGuiInputTextState_ClearFreeMemory" defs["ImGuiInputTextState_ClearFreeMemory"][1]["ret"] = "void" defs["ImGuiInputTextState_ClearFreeMemory"][1]["signature"] = "()" @@ -4226,7 +4236,7 @@ defs["ImGuiInputTextState_ClearSelection"][1]["call_args"] = "()" defs["ImGuiInputTextState_ClearSelection"][1]["cimguiname"] = "ImGuiInputTextState_ClearSelection" defs["ImGuiInputTextState_ClearSelection"][1]["defaults"] = {} defs["ImGuiInputTextState_ClearSelection"][1]["funcname"] = "ClearSelection" -defs["ImGuiInputTextState_ClearSelection"][1]["location"] = "internal" +defs["ImGuiInputTextState_ClearSelection"][1]["location"] = "imgui_internal:876" defs["ImGuiInputTextState_ClearSelection"][1]["ov_cimguiname"] = "ImGuiInputTextState_ClearSelection" defs["ImGuiInputTextState_ClearSelection"][1]["ret"] = "void" defs["ImGuiInputTextState_ClearSelection"][1]["signature"] = "()" @@ -4244,7 +4254,7 @@ defs["ImGuiInputTextState_ClearText"][1]["call_args"] = "()" defs["ImGuiInputTextState_ClearText"][1]["cimguiname"] = "ImGuiInputTextState_ClearText" defs["ImGuiInputTextState_ClearText"][1]["defaults"] = {} defs["ImGuiInputTextState_ClearText"][1]["funcname"] = "ClearText" -defs["ImGuiInputTextState_ClearText"][1]["location"] = "internal" +defs["ImGuiInputTextState_ClearText"][1]["location"] = "imgui_internal:866" defs["ImGuiInputTextState_ClearText"][1]["ov_cimguiname"] = "ImGuiInputTextState_ClearText" defs["ImGuiInputTextState_ClearText"][1]["ret"] = "void" defs["ImGuiInputTextState_ClearText"][1]["signature"] = "()" @@ -4262,7 +4272,7 @@ defs["ImGuiInputTextState_CursorAnimReset"][1]["call_args"] = "()" defs["ImGuiInputTextState_CursorAnimReset"][1]["cimguiname"] = "ImGuiInputTextState_CursorAnimReset" defs["ImGuiInputTextState_CursorAnimReset"][1]["defaults"] = {} defs["ImGuiInputTextState_CursorAnimReset"][1]["funcname"] = "CursorAnimReset" -defs["ImGuiInputTextState_CursorAnimReset"][1]["location"] = "internal" +defs["ImGuiInputTextState_CursorAnimReset"][1]["location"] = "imgui_internal:873" defs["ImGuiInputTextState_CursorAnimReset"][1]["ov_cimguiname"] = "ImGuiInputTextState_CursorAnimReset" defs["ImGuiInputTextState_CursorAnimReset"][1]["ret"] = "void" defs["ImGuiInputTextState_CursorAnimReset"][1]["signature"] = "()" @@ -4280,7 +4290,7 @@ defs["ImGuiInputTextState_CursorClamp"][1]["call_args"] = "()" defs["ImGuiInputTextState_CursorClamp"][1]["cimguiname"] = "ImGuiInputTextState_CursorClamp" defs["ImGuiInputTextState_CursorClamp"][1]["defaults"] = {} defs["ImGuiInputTextState_CursorClamp"][1]["funcname"] = "CursorClamp" -defs["ImGuiInputTextState_CursorClamp"][1]["location"] = "internal" +defs["ImGuiInputTextState_CursorClamp"][1]["location"] = "imgui_internal:874" defs["ImGuiInputTextState_CursorClamp"][1]["ov_cimguiname"] = "ImGuiInputTextState_CursorClamp" defs["ImGuiInputTextState_CursorClamp"][1]["ret"] = "void" defs["ImGuiInputTextState_CursorClamp"][1]["signature"] = "()" @@ -4298,7 +4308,7 @@ defs["ImGuiInputTextState_GetRedoAvailCount"][1]["call_args"] = "()" defs["ImGuiInputTextState_GetRedoAvailCount"][1]["cimguiname"] = "ImGuiInputTextState_GetRedoAvailCount" defs["ImGuiInputTextState_GetRedoAvailCount"][1]["defaults"] = {} defs["ImGuiInputTextState_GetRedoAvailCount"][1]["funcname"] = "GetRedoAvailCount" -defs["ImGuiInputTextState_GetRedoAvailCount"][1]["location"] = "internal" +defs["ImGuiInputTextState_GetRedoAvailCount"][1]["location"] = "imgui_internal:869" defs["ImGuiInputTextState_GetRedoAvailCount"][1]["ov_cimguiname"] = "ImGuiInputTextState_GetRedoAvailCount" defs["ImGuiInputTextState_GetRedoAvailCount"][1]["ret"] = "int" defs["ImGuiInputTextState_GetRedoAvailCount"][1]["signature"] = "()const" @@ -4316,7 +4326,7 @@ defs["ImGuiInputTextState_GetUndoAvailCount"][1]["call_args"] = "()" defs["ImGuiInputTextState_GetUndoAvailCount"][1]["cimguiname"] = "ImGuiInputTextState_GetUndoAvailCount" defs["ImGuiInputTextState_GetUndoAvailCount"][1]["defaults"] = {} defs["ImGuiInputTextState_GetUndoAvailCount"][1]["funcname"] = "GetUndoAvailCount" -defs["ImGuiInputTextState_GetUndoAvailCount"][1]["location"] = "internal" +defs["ImGuiInputTextState_GetUndoAvailCount"][1]["location"] = "imgui_internal:868" defs["ImGuiInputTextState_GetUndoAvailCount"][1]["ov_cimguiname"] = "ImGuiInputTextState_GetUndoAvailCount" defs["ImGuiInputTextState_GetUndoAvailCount"][1]["ret"] = "int" defs["ImGuiInputTextState_GetUndoAvailCount"][1]["signature"] = "()const" @@ -4334,7 +4344,7 @@ defs["ImGuiInputTextState_HasSelection"][1]["call_args"] = "()" defs["ImGuiInputTextState_HasSelection"][1]["cimguiname"] = "ImGuiInputTextState_HasSelection" defs["ImGuiInputTextState_HasSelection"][1]["defaults"] = {} defs["ImGuiInputTextState_HasSelection"][1]["funcname"] = "HasSelection" -defs["ImGuiInputTextState_HasSelection"][1]["location"] = "internal" +defs["ImGuiInputTextState_HasSelection"][1]["location"] = "imgui_internal:875" defs["ImGuiInputTextState_HasSelection"][1]["ov_cimguiname"] = "ImGuiInputTextState_HasSelection" defs["ImGuiInputTextState_HasSelection"][1]["ret"] = "bool" defs["ImGuiInputTextState_HasSelection"][1]["signature"] = "()const" @@ -4350,7 +4360,7 @@ defs["ImGuiInputTextState_ImGuiInputTextState"][1]["cimguiname"] = "ImGuiInputTe defs["ImGuiInputTextState_ImGuiInputTextState"][1]["constructor"] = true defs["ImGuiInputTextState_ImGuiInputTextState"][1]["defaults"] = {} defs["ImGuiInputTextState_ImGuiInputTextState"][1]["funcname"] = "ImGuiInputTextState" -defs["ImGuiInputTextState_ImGuiInputTextState"][1]["location"] = "internal" +defs["ImGuiInputTextState_ImGuiInputTextState"][1]["location"] = "imgui_internal:865" defs["ImGuiInputTextState_ImGuiInputTextState"][1]["ov_cimguiname"] = "ImGuiInputTextState_ImGuiInputTextState" defs["ImGuiInputTextState_ImGuiInputTextState"][1]["signature"] = "()" defs["ImGuiInputTextState_ImGuiInputTextState"][1]["stname"] = "ImGuiInputTextState" @@ -4370,7 +4380,7 @@ defs["ImGuiInputTextState_OnKeyPressed"][1]["call_args"] = "(key)" defs["ImGuiInputTextState_OnKeyPressed"][1]["cimguiname"] = "ImGuiInputTextState_OnKeyPressed" defs["ImGuiInputTextState_OnKeyPressed"][1]["defaults"] = {} defs["ImGuiInputTextState_OnKeyPressed"][1]["funcname"] = "OnKeyPressed" -defs["ImGuiInputTextState_OnKeyPressed"][1]["location"] = "internal" +defs["ImGuiInputTextState_OnKeyPressed"][1]["location"] = "imgui_internal:870" defs["ImGuiInputTextState_OnKeyPressed"][1]["ov_cimguiname"] = "ImGuiInputTextState_OnKeyPressed" defs["ImGuiInputTextState_OnKeyPressed"][1]["ret"] = "void" defs["ImGuiInputTextState_OnKeyPressed"][1]["signature"] = "(int)" @@ -4388,7 +4398,7 @@ defs["ImGuiInputTextState_SelectAll"][1]["call_args"] = "()" defs["ImGuiInputTextState_SelectAll"][1]["cimguiname"] = "ImGuiInputTextState_SelectAll" defs["ImGuiInputTextState_SelectAll"][1]["defaults"] = {} defs["ImGuiInputTextState_SelectAll"][1]["funcname"] = "SelectAll" -defs["ImGuiInputTextState_SelectAll"][1]["location"] = "internal" +defs["ImGuiInputTextState_SelectAll"][1]["location"] = "imgui_internal:877" defs["ImGuiInputTextState_SelectAll"][1]["ov_cimguiname"] = "ImGuiInputTextState_SelectAll" defs["ImGuiInputTextState_SelectAll"][1]["ret"] = "void" defs["ImGuiInputTextState_SelectAll"][1]["signature"] = "()" @@ -4422,7 +4432,7 @@ defs["ImGuiLastItemDataBackup_Backup"][1]["call_args"] = "()" defs["ImGuiLastItemDataBackup_Backup"][1]["cimguiname"] = "ImGuiLastItemDataBackup_Backup" defs["ImGuiLastItemDataBackup_Backup"][1]["defaults"] = {} defs["ImGuiLastItemDataBackup_Backup"][1]["funcname"] = "Backup" -defs["ImGuiLastItemDataBackup_Backup"][1]["location"] = "internal" +defs["ImGuiLastItemDataBackup_Backup"][1]["location"] = "imgui_internal:1680" defs["ImGuiLastItemDataBackup_Backup"][1]["ov_cimguiname"] = "ImGuiLastItemDataBackup_Backup" defs["ImGuiLastItemDataBackup_Backup"][1]["ret"] = "void" defs["ImGuiLastItemDataBackup_Backup"][1]["signature"] = "()" @@ -4438,7 +4448,7 @@ defs["ImGuiLastItemDataBackup_ImGuiLastItemDataBackup"][1]["cimguiname"] = "ImGu defs["ImGuiLastItemDataBackup_ImGuiLastItemDataBackup"][1]["constructor"] = true defs["ImGuiLastItemDataBackup_ImGuiLastItemDataBackup"][1]["defaults"] = {} defs["ImGuiLastItemDataBackup_ImGuiLastItemDataBackup"][1]["funcname"] = "ImGuiLastItemDataBackup" -defs["ImGuiLastItemDataBackup_ImGuiLastItemDataBackup"][1]["location"] = "internal" +defs["ImGuiLastItemDataBackup_ImGuiLastItemDataBackup"][1]["location"] = "imgui_internal:1679" defs["ImGuiLastItemDataBackup_ImGuiLastItemDataBackup"][1]["ov_cimguiname"] = "ImGuiLastItemDataBackup_ImGuiLastItemDataBackup" defs["ImGuiLastItemDataBackup_ImGuiLastItemDataBackup"][1]["signature"] = "()" defs["ImGuiLastItemDataBackup_ImGuiLastItemDataBackup"][1]["stname"] = "ImGuiLastItemDataBackup" @@ -4455,7 +4465,7 @@ defs["ImGuiLastItemDataBackup_Restore"][1]["call_args"] = "()" defs["ImGuiLastItemDataBackup_Restore"][1]["cimguiname"] = "ImGuiLastItemDataBackup_Restore" defs["ImGuiLastItemDataBackup_Restore"][1]["defaults"] = {} defs["ImGuiLastItemDataBackup_Restore"][1]["funcname"] = "Restore" -defs["ImGuiLastItemDataBackup_Restore"][1]["location"] = "internal" +defs["ImGuiLastItemDataBackup_Restore"][1]["location"] = "imgui_internal:1681" defs["ImGuiLastItemDataBackup_Restore"][1]["ov_cimguiname"] = "ImGuiLastItemDataBackup_Restore" defs["ImGuiLastItemDataBackup_Restore"][1]["ret"] = "void" defs["ImGuiLastItemDataBackup_Restore"][1]["signature"] = "()const" @@ -4496,7 +4506,7 @@ defs["ImGuiListClipper_Begin"][1]["cimguiname"] = "ImGuiListClipper_Begin" defs["ImGuiListClipper_Begin"][1]["defaults"] = {} defs["ImGuiListClipper_Begin"][1]["defaults"]["items_height"] = "-1.0f" defs["ImGuiListClipper_Begin"][1]["funcname"] = "Begin" -defs["ImGuiListClipper_Begin"][1]["location"] = "imgui" +defs["ImGuiListClipper_Begin"][1]["location"] = "imgui:1900" defs["ImGuiListClipper_Begin"][1]["ov_cimguiname"] = "ImGuiListClipper_Begin" defs["ImGuiListClipper_Begin"][1]["ret"] = "void" defs["ImGuiListClipper_Begin"][1]["signature"] = "(int,float)" @@ -4514,7 +4524,7 @@ defs["ImGuiListClipper_End"][1]["call_args"] = "()" defs["ImGuiListClipper_End"][1]["cimguiname"] = "ImGuiListClipper_End" defs["ImGuiListClipper_End"][1]["defaults"] = {} defs["ImGuiListClipper_End"][1]["funcname"] = "End" -defs["ImGuiListClipper_End"][1]["location"] = "imgui" +defs["ImGuiListClipper_End"][1]["location"] = "imgui:1901" defs["ImGuiListClipper_End"][1]["ov_cimguiname"] = "ImGuiListClipper_End" defs["ImGuiListClipper_End"][1]["ret"] = "void" defs["ImGuiListClipper_End"][1]["signature"] = "()" @@ -4538,7 +4548,7 @@ defs["ImGuiListClipper_ImGuiListClipper"][1]["defaults"] = {} defs["ImGuiListClipper_ImGuiListClipper"][1]["defaults"]["items_count"] = "-1" defs["ImGuiListClipper_ImGuiListClipper"][1]["defaults"]["items_height"] = "-1.0f" defs["ImGuiListClipper_ImGuiListClipper"][1]["funcname"] = "ImGuiListClipper" -defs["ImGuiListClipper_ImGuiListClipper"][1]["location"] = "imgui" +defs["ImGuiListClipper_ImGuiListClipper"][1]["location"] = "imgui:1896" defs["ImGuiListClipper_ImGuiListClipper"][1]["ov_cimguiname"] = "ImGuiListClipper_ImGuiListClipper" defs["ImGuiListClipper_ImGuiListClipper"][1]["signature"] = "(int,float)" defs["ImGuiListClipper_ImGuiListClipper"][1]["stname"] = "ImGuiListClipper" @@ -4555,7 +4565,7 @@ defs["ImGuiListClipper_Step"][1]["call_args"] = "()" defs["ImGuiListClipper_Step"][1]["cimguiname"] = "ImGuiListClipper_Step" defs["ImGuiListClipper_Step"][1]["defaults"] = {} defs["ImGuiListClipper_Step"][1]["funcname"] = "Step" -defs["ImGuiListClipper_Step"][1]["location"] = "imgui" +defs["ImGuiListClipper_Step"][1]["location"] = "imgui:1899" defs["ImGuiListClipper_Step"][1]["ov_cimguiname"] = "ImGuiListClipper_Step" defs["ImGuiListClipper_Step"][1]["ret"] = "bool" defs["ImGuiListClipper_Step"][1]["signature"] = "()" @@ -4572,7 +4582,9 @@ defs["ImGuiListClipper_destroy"][1]["call_args"] = "(self)" defs["ImGuiListClipper_destroy"][1]["cimguiname"] = "ImGuiListClipper_destroy" defs["ImGuiListClipper_destroy"][1]["defaults"] = {} defs["ImGuiListClipper_destroy"][1]["destructor"] = true +defs["ImGuiListClipper_destroy"][1]["location"] = "imgui:1897" defs["ImGuiListClipper_destroy"][1]["ov_cimguiname"] = "ImGuiListClipper_destroy" +defs["ImGuiListClipper_destroy"][1]["realdestructor"] = true defs["ImGuiListClipper_destroy"][1]["ret"] = "void" defs["ImGuiListClipper_destroy"][1]["signature"] = "(ImGuiListClipper*)" defs["ImGuiListClipper_destroy"][1]["stname"] = "ImGuiListClipper" @@ -4592,7 +4604,7 @@ defs["ImGuiMenuColumns_CalcExtraSpace"][1]["call_args"] = "(avail_w)" defs["ImGuiMenuColumns_CalcExtraSpace"][1]["cimguiname"] = "ImGuiMenuColumns_CalcExtraSpace" defs["ImGuiMenuColumns_CalcExtraSpace"][1]["defaults"] = {} defs["ImGuiMenuColumns_CalcExtraSpace"][1]["funcname"] = "CalcExtraSpace" -defs["ImGuiMenuColumns_CalcExtraSpace"][1]["location"] = "internal" +defs["ImGuiMenuColumns_CalcExtraSpace"][1]["location"] = "imgui_internal:842" defs["ImGuiMenuColumns_CalcExtraSpace"][1]["ov_cimguiname"] = "ImGuiMenuColumns_CalcExtraSpace" defs["ImGuiMenuColumns_CalcExtraSpace"][1]["ret"] = "float" defs["ImGuiMenuColumns_CalcExtraSpace"][1]["signature"] = "(float)const" @@ -4619,7 +4631,7 @@ defs["ImGuiMenuColumns_DeclColumns"][1]["call_args"] = "(w0,w1,w2)" defs["ImGuiMenuColumns_DeclColumns"][1]["cimguiname"] = "ImGuiMenuColumns_DeclColumns" defs["ImGuiMenuColumns_DeclColumns"][1]["defaults"] = {} defs["ImGuiMenuColumns_DeclColumns"][1]["funcname"] = "DeclColumns" -defs["ImGuiMenuColumns_DeclColumns"][1]["location"] = "internal" +defs["ImGuiMenuColumns_DeclColumns"][1]["location"] = "imgui_internal:841" defs["ImGuiMenuColumns_DeclColumns"][1]["ov_cimguiname"] = "ImGuiMenuColumns_DeclColumns" defs["ImGuiMenuColumns_DeclColumns"][1]["ret"] = "float" defs["ImGuiMenuColumns_DeclColumns"][1]["signature"] = "(float,float,float)" @@ -4635,7 +4647,7 @@ defs["ImGuiMenuColumns_ImGuiMenuColumns"][1]["cimguiname"] = "ImGuiMenuColumns_I defs["ImGuiMenuColumns_ImGuiMenuColumns"][1]["constructor"] = true defs["ImGuiMenuColumns_ImGuiMenuColumns"][1]["defaults"] = {} defs["ImGuiMenuColumns_ImGuiMenuColumns"][1]["funcname"] = "ImGuiMenuColumns" -defs["ImGuiMenuColumns_ImGuiMenuColumns"][1]["location"] = "internal" +defs["ImGuiMenuColumns_ImGuiMenuColumns"][1]["location"] = "imgui_internal:839" defs["ImGuiMenuColumns_ImGuiMenuColumns"][1]["ov_cimguiname"] = "ImGuiMenuColumns_ImGuiMenuColumns" defs["ImGuiMenuColumns_ImGuiMenuColumns"][1]["signature"] = "()" defs["ImGuiMenuColumns_ImGuiMenuColumns"][1]["stname"] = "ImGuiMenuColumns" @@ -4661,7 +4673,7 @@ defs["ImGuiMenuColumns_Update"][1]["call_args"] = "(count,spacing,clear)" defs["ImGuiMenuColumns_Update"][1]["cimguiname"] = "ImGuiMenuColumns_Update" defs["ImGuiMenuColumns_Update"][1]["defaults"] = {} defs["ImGuiMenuColumns_Update"][1]["funcname"] = "Update" -defs["ImGuiMenuColumns_Update"][1]["location"] = "internal" +defs["ImGuiMenuColumns_Update"][1]["location"] = "imgui_internal:840" defs["ImGuiMenuColumns_Update"][1]["ov_cimguiname"] = "ImGuiMenuColumns_Update" defs["ImGuiMenuColumns_Update"][1]["ret"] = "void" defs["ImGuiMenuColumns_Update"][1]["signature"] = "(int,float,bool)" @@ -4695,7 +4707,7 @@ defs["ImGuiNavMoveResult_Clear"][1]["call_args"] = "()" defs["ImGuiNavMoveResult_Clear"][1]["cimguiname"] = "ImGuiNavMoveResult_Clear" defs["ImGuiNavMoveResult_Clear"][1]["defaults"] = {} defs["ImGuiNavMoveResult_Clear"][1]["funcname"] = "Clear" -defs["ImGuiNavMoveResult_Clear"][1]["location"] = "internal" +defs["ImGuiNavMoveResult_Clear"][1]["location"] = "imgui_internal:905" defs["ImGuiNavMoveResult_Clear"][1]["ov_cimguiname"] = "ImGuiNavMoveResult_Clear" defs["ImGuiNavMoveResult_Clear"][1]["ret"] = "void" defs["ImGuiNavMoveResult_Clear"][1]["signature"] = "()" @@ -4711,7 +4723,7 @@ defs["ImGuiNavMoveResult_ImGuiNavMoveResult"][1]["cimguiname"] = "ImGuiNavMoveRe defs["ImGuiNavMoveResult_ImGuiNavMoveResult"][1]["constructor"] = true defs["ImGuiNavMoveResult_ImGuiNavMoveResult"][1]["defaults"] = {} defs["ImGuiNavMoveResult_ImGuiNavMoveResult"][1]["funcname"] = "ImGuiNavMoveResult" -defs["ImGuiNavMoveResult_ImGuiNavMoveResult"][1]["location"] = "internal" +defs["ImGuiNavMoveResult_ImGuiNavMoveResult"][1]["location"] = "imgui_internal:904" defs["ImGuiNavMoveResult_ImGuiNavMoveResult"][1]["ov_cimguiname"] = "ImGuiNavMoveResult_ImGuiNavMoveResult" defs["ImGuiNavMoveResult_ImGuiNavMoveResult"][1]["signature"] = "()" defs["ImGuiNavMoveResult_ImGuiNavMoveResult"][1]["stname"] = "ImGuiNavMoveResult" @@ -4744,7 +4756,7 @@ defs["ImGuiNextItemData_ClearFlags"][1]["call_args"] = "()" defs["ImGuiNextItemData_ClearFlags"][1]["cimguiname"] = "ImGuiNextItemData_ClearFlags" defs["ImGuiNextItemData_ClearFlags"][1]["defaults"] = {} defs["ImGuiNextItemData_ClearFlags"][1]["funcname"] = "ClearFlags" -defs["ImGuiNextItemData_ClearFlags"][1]["location"] = "internal" +defs["ImGuiNextItemData_ClearFlags"][1]["location"] = "imgui_internal:960" defs["ImGuiNextItemData_ClearFlags"][1]["ov_cimguiname"] = "ImGuiNextItemData_ClearFlags" defs["ImGuiNextItemData_ClearFlags"][1]["ret"] = "void" defs["ImGuiNextItemData_ClearFlags"][1]["signature"] = "()" @@ -4760,7 +4772,7 @@ defs["ImGuiNextItemData_ImGuiNextItemData"][1]["cimguiname"] = "ImGuiNextItemDat defs["ImGuiNextItemData_ImGuiNextItemData"][1]["constructor"] = true defs["ImGuiNextItemData_ImGuiNextItemData"][1]["defaults"] = {} defs["ImGuiNextItemData_ImGuiNextItemData"][1]["funcname"] = "ImGuiNextItemData" -defs["ImGuiNextItemData_ImGuiNextItemData"][1]["location"] = "internal" +defs["ImGuiNextItemData_ImGuiNextItemData"][1]["location"] = "imgui_internal:959" defs["ImGuiNextItemData_ImGuiNextItemData"][1]["ov_cimguiname"] = "ImGuiNextItemData_ImGuiNextItemData" defs["ImGuiNextItemData_ImGuiNextItemData"][1]["signature"] = "()" defs["ImGuiNextItemData_ImGuiNextItemData"][1]["stname"] = "ImGuiNextItemData" @@ -4793,7 +4805,7 @@ defs["ImGuiNextWindowData_ClearFlags"][1]["call_args"] = "()" defs["ImGuiNextWindowData_ClearFlags"][1]["cimguiname"] = "ImGuiNextWindowData_ClearFlags" defs["ImGuiNextWindowData_ClearFlags"][1]["defaults"] = {} defs["ImGuiNextWindowData_ClearFlags"][1]["funcname"] = "ClearFlags" -defs["ImGuiNextWindowData_ClearFlags"][1]["location"] = "internal" +defs["ImGuiNextWindowData_ClearFlags"][1]["location"] = "imgui_internal:941" defs["ImGuiNextWindowData_ClearFlags"][1]["ov_cimguiname"] = "ImGuiNextWindowData_ClearFlags" defs["ImGuiNextWindowData_ClearFlags"][1]["ret"] = "void" defs["ImGuiNextWindowData_ClearFlags"][1]["signature"] = "()" @@ -4809,7 +4821,7 @@ defs["ImGuiNextWindowData_ImGuiNextWindowData"][1]["cimguiname"] = "ImGuiNextWin defs["ImGuiNextWindowData_ImGuiNextWindowData"][1]["constructor"] = true defs["ImGuiNextWindowData_ImGuiNextWindowData"][1]["defaults"] = {} defs["ImGuiNextWindowData_ImGuiNextWindowData"][1]["funcname"] = "ImGuiNextWindowData" -defs["ImGuiNextWindowData_ImGuiNextWindowData"][1]["location"] = "internal" +defs["ImGuiNextWindowData_ImGuiNextWindowData"][1]["location"] = "imgui_internal:940" defs["ImGuiNextWindowData_ImGuiNextWindowData"][1]["ov_cimguiname"] = "ImGuiNextWindowData_ImGuiNextWindowData" defs["ImGuiNextWindowData_ImGuiNextWindowData"][1]["signature"] = "()" defs["ImGuiNextWindowData_ImGuiNextWindowData"][1]["stname"] = "ImGuiNextWindowData" @@ -4840,7 +4852,7 @@ defs["ImGuiOnceUponAFrame_ImGuiOnceUponAFrame"][1]["cimguiname"] = "ImGuiOnceUpo defs["ImGuiOnceUponAFrame_ImGuiOnceUponAFrame"][1]["constructor"] = true defs["ImGuiOnceUponAFrame_ImGuiOnceUponAFrame"][1]["defaults"] = {} defs["ImGuiOnceUponAFrame_ImGuiOnceUponAFrame"][1]["funcname"] = "ImGuiOnceUponAFrame" -defs["ImGuiOnceUponAFrame_ImGuiOnceUponAFrame"][1]["location"] = "imgui" +defs["ImGuiOnceUponAFrame_ImGuiOnceUponAFrame"][1]["location"] = "imgui:1767" defs["ImGuiOnceUponAFrame_ImGuiOnceUponAFrame"][1]["ov_cimguiname"] = "ImGuiOnceUponAFrame_ImGuiOnceUponAFrame" defs["ImGuiOnceUponAFrame_ImGuiOnceUponAFrame"][1]["signature"] = "()" defs["ImGuiOnceUponAFrame_ImGuiOnceUponAFrame"][1]["stname"] = "ImGuiOnceUponAFrame" @@ -4873,7 +4885,7 @@ defs["ImGuiPayload_Clear"][1]["call_args"] = "()" defs["ImGuiPayload_Clear"][1]["cimguiname"] = "ImGuiPayload_Clear" defs["ImGuiPayload_Clear"][1]["defaults"] = {} defs["ImGuiPayload_Clear"][1]["funcname"] = "Clear" -defs["ImGuiPayload_Clear"][1]["location"] = "imgui" +defs["ImGuiPayload_Clear"][1]["location"] = "imgui:1695" defs["ImGuiPayload_Clear"][1]["ov_cimguiname"] = "ImGuiPayload_Clear" defs["ImGuiPayload_Clear"][1]["ret"] = "void" defs["ImGuiPayload_Clear"][1]["signature"] = "()" @@ -4889,7 +4901,7 @@ defs["ImGuiPayload_ImGuiPayload"][1]["cimguiname"] = "ImGuiPayload_ImGuiPayload" defs["ImGuiPayload_ImGuiPayload"][1]["constructor"] = true defs["ImGuiPayload_ImGuiPayload"][1]["defaults"] = {} defs["ImGuiPayload_ImGuiPayload"][1]["funcname"] = "ImGuiPayload" -defs["ImGuiPayload_ImGuiPayload"][1]["location"] = "imgui" +defs["ImGuiPayload_ImGuiPayload"][1]["location"] = "imgui:1694" defs["ImGuiPayload_ImGuiPayload"][1]["ov_cimguiname"] = "ImGuiPayload_ImGuiPayload" defs["ImGuiPayload_ImGuiPayload"][1]["signature"] = "()" defs["ImGuiPayload_ImGuiPayload"][1]["stname"] = "ImGuiPayload" @@ -4909,7 +4921,7 @@ defs["ImGuiPayload_IsDataType"][1]["call_args"] = "(type)" defs["ImGuiPayload_IsDataType"][1]["cimguiname"] = "ImGuiPayload_IsDataType" defs["ImGuiPayload_IsDataType"][1]["defaults"] = {} defs["ImGuiPayload_IsDataType"][1]["funcname"] = "IsDataType" -defs["ImGuiPayload_IsDataType"][1]["location"] = "imgui" +defs["ImGuiPayload_IsDataType"][1]["location"] = "imgui:1696" defs["ImGuiPayload_IsDataType"][1]["ov_cimguiname"] = "ImGuiPayload_IsDataType" defs["ImGuiPayload_IsDataType"][1]["ret"] = "bool" defs["ImGuiPayload_IsDataType"][1]["signature"] = "(const char*)const" @@ -4927,7 +4939,7 @@ defs["ImGuiPayload_IsDelivery"][1]["call_args"] = "()" defs["ImGuiPayload_IsDelivery"][1]["cimguiname"] = "ImGuiPayload_IsDelivery" defs["ImGuiPayload_IsDelivery"][1]["defaults"] = {} defs["ImGuiPayload_IsDelivery"][1]["funcname"] = "IsDelivery" -defs["ImGuiPayload_IsDelivery"][1]["location"] = "imgui" +defs["ImGuiPayload_IsDelivery"][1]["location"] = "imgui:1698" defs["ImGuiPayload_IsDelivery"][1]["ov_cimguiname"] = "ImGuiPayload_IsDelivery" defs["ImGuiPayload_IsDelivery"][1]["ret"] = "bool" defs["ImGuiPayload_IsDelivery"][1]["signature"] = "()const" @@ -4945,7 +4957,7 @@ defs["ImGuiPayload_IsPreview"][1]["call_args"] = "()" defs["ImGuiPayload_IsPreview"][1]["cimguiname"] = "ImGuiPayload_IsPreview" defs["ImGuiPayload_IsPreview"][1]["defaults"] = {} defs["ImGuiPayload_IsPreview"][1]["funcname"] = "IsPreview" -defs["ImGuiPayload_IsPreview"][1]["location"] = "imgui" +defs["ImGuiPayload_IsPreview"][1]["location"] = "imgui:1697" defs["ImGuiPayload_IsPreview"][1]["ov_cimguiname"] = "ImGuiPayload_IsPreview" defs["ImGuiPayload_IsPreview"][1]["ret"] = "bool" defs["ImGuiPayload_IsPreview"][1]["signature"] = "()const" @@ -4977,7 +4989,7 @@ defs["ImGuiPopupData_ImGuiPopupData"][1]["cimguiname"] = "ImGuiPopupData_ImGuiPo defs["ImGuiPopupData_ImGuiPopupData"][1]["constructor"] = true defs["ImGuiPopupData_ImGuiPopupData"][1]["defaults"] = {} defs["ImGuiPopupData_ImGuiPopupData"][1]["funcname"] = "ImGuiPopupData" -defs["ImGuiPopupData_ImGuiPopupData"][1]["location"] = "internal" +defs["ImGuiPopupData_ImGuiPopupData"][1]["location"] = "imgui_internal:891" defs["ImGuiPopupData_ImGuiPopupData"][1]["ov_cimguiname"] = "ImGuiPopupData_ImGuiPopupData" defs["ImGuiPopupData_ImGuiPopupData"][1]["signature"] = "()" defs["ImGuiPopupData_ImGuiPopupData"][1]["stname"] = "ImGuiPopupData" @@ -5011,7 +5023,7 @@ defs["ImGuiPtrOrIndex_ImGuiPtrOrIndex"][1]["cimguiname"] = "ImGuiPtrOrIndex_ImGu defs["ImGuiPtrOrIndex_ImGuiPtrOrIndex"][1]["constructor"] = true defs["ImGuiPtrOrIndex_ImGuiPtrOrIndex"][1]["defaults"] = {} defs["ImGuiPtrOrIndex_ImGuiPtrOrIndex"][1]["funcname"] = "ImGuiPtrOrIndex" -defs["ImGuiPtrOrIndex_ImGuiPtrOrIndex"][1]["location"] = "internal" +defs["ImGuiPtrOrIndex_ImGuiPtrOrIndex"][1]["location"] = "imgui_internal:974" defs["ImGuiPtrOrIndex_ImGuiPtrOrIndex"][1]["ov_cimguiname"] = "ImGuiPtrOrIndex_ImGuiPtrOrIndexPtr" defs["ImGuiPtrOrIndex_ImGuiPtrOrIndex"][1]["signature"] = "(void*)" defs["ImGuiPtrOrIndex_ImGuiPtrOrIndex"][1]["stname"] = "ImGuiPtrOrIndex" @@ -5027,7 +5039,7 @@ defs["ImGuiPtrOrIndex_ImGuiPtrOrIndex"][2]["cimguiname"] = "ImGuiPtrOrIndex_ImGu defs["ImGuiPtrOrIndex_ImGuiPtrOrIndex"][2]["constructor"] = true defs["ImGuiPtrOrIndex_ImGuiPtrOrIndex"][2]["defaults"] = {} defs["ImGuiPtrOrIndex_ImGuiPtrOrIndex"][2]["funcname"] = "ImGuiPtrOrIndex" -defs["ImGuiPtrOrIndex_ImGuiPtrOrIndex"][2]["location"] = "internal" +defs["ImGuiPtrOrIndex_ImGuiPtrOrIndex"][2]["location"] = "imgui_internal:975" defs["ImGuiPtrOrIndex_ImGuiPtrOrIndex"][2]["ov_cimguiname"] = "ImGuiPtrOrIndex_ImGuiPtrOrIndexInt" defs["ImGuiPtrOrIndex_ImGuiPtrOrIndex"][2]["signature"] = "(int)" defs["ImGuiPtrOrIndex_ImGuiPtrOrIndex"][2]["stname"] = "ImGuiPtrOrIndex" @@ -5059,7 +5071,7 @@ defs["ImGuiSettingsHandler_ImGuiSettingsHandler"][1]["cimguiname"] = "ImGuiSetti defs["ImGuiSettingsHandler_ImGuiSettingsHandler"][1]["constructor"] = true defs["ImGuiSettingsHandler_ImGuiSettingsHandler"][1]["defaults"] = {} defs["ImGuiSettingsHandler_ImGuiSettingsHandler"][1]["funcname"] = "ImGuiSettingsHandler" -defs["ImGuiSettingsHandler_ImGuiSettingsHandler"][1]["location"] = "internal" +defs["ImGuiSettingsHandler_ImGuiSettingsHandler"][1]["location"] = "imgui_internal:1093" defs["ImGuiSettingsHandler_ImGuiSettingsHandler"][1]["ov_cimguiname"] = "ImGuiSettingsHandler_ImGuiSettingsHandler" defs["ImGuiSettingsHandler_ImGuiSettingsHandler"][1]["signature"] = "()" defs["ImGuiSettingsHandler_ImGuiSettingsHandler"][1]["stname"] = "ImGuiSettingsHandler" @@ -5096,7 +5108,7 @@ defs["ImGuiStoragePair_ImGuiStoragePair"][1]["cimguiname"] = "ImGuiStoragePair_I defs["ImGuiStoragePair_ImGuiStoragePair"][1]["constructor"] = true defs["ImGuiStoragePair_ImGuiStoragePair"][1]["defaults"] = {} defs["ImGuiStoragePair_ImGuiStoragePair"][1]["funcname"] = "ImGuiStoragePair" -defs["ImGuiStoragePair_ImGuiStoragePair"][1]["location"] = "imgui" +defs["ImGuiStoragePair_ImGuiStoragePair"][1]["location"] = "imgui:1834" defs["ImGuiStoragePair_ImGuiStoragePair"][1]["ov_cimguiname"] = "ImGuiStoragePair_ImGuiStoragePairInt" defs["ImGuiStoragePair_ImGuiStoragePair"][1]["signature"] = "(ImGuiID,int)" defs["ImGuiStoragePair_ImGuiStoragePair"][1]["stname"] = "ImGuiStoragePair" @@ -5115,7 +5127,7 @@ defs["ImGuiStoragePair_ImGuiStoragePair"][2]["cimguiname"] = "ImGuiStoragePair_I defs["ImGuiStoragePair_ImGuiStoragePair"][2]["constructor"] = true defs["ImGuiStoragePair_ImGuiStoragePair"][2]["defaults"] = {} defs["ImGuiStoragePair_ImGuiStoragePair"][2]["funcname"] = "ImGuiStoragePair" -defs["ImGuiStoragePair_ImGuiStoragePair"][2]["location"] = "imgui" +defs["ImGuiStoragePair_ImGuiStoragePair"][2]["location"] = "imgui:1835" defs["ImGuiStoragePair_ImGuiStoragePair"][2]["ov_cimguiname"] = "ImGuiStoragePair_ImGuiStoragePairFloat" defs["ImGuiStoragePair_ImGuiStoragePair"][2]["signature"] = "(ImGuiID,float)" defs["ImGuiStoragePair_ImGuiStoragePair"][2]["stname"] = "ImGuiStoragePair" @@ -5134,7 +5146,7 @@ defs["ImGuiStoragePair_ImGuiStoragePair"][3]["cimguiname"] = "ImGuiStoragePair_I defs["ImGuiStoragePair_ImGuiStoragePair"][3]["constructor"] = true defs["ImGuiStoragePair_ImGuiStoragePair"][3]["defaults"] = {} defs["ImGuiStoragePair_ImGuiStoragePair"][3]["funcname"] = "ImGuiStoragePair" -defs["ImGuiStoragePair_ImGuiStoragePair"][3]["location"] = "imgui" +defs["ImGuiStoragePair_ImGuiStoragePair"][3]["location"] = "imgui:1836" defs["ImGuiStoragePair_ImGuiStoragePair"][3]["ov_cimguiname"] = "ImGuiStoragePair_ImGuiStoragePairPtr" defs["ImGuiStoragePair_ImGuiStoragePair"][3]["signature"] = "(ImGuiID,void*)" defs["ImGuiStoragePair_ImGuiStoragePair"][3]["stname"] = "ImGuiStoragePair" @@ -5169,7 +5181,7 @@ defs["ImGuiStorage_BuildSortByKey"][1]["call_args"] = "()" defs["ImGuiStorage_BuildSortByKey"][1]["cimguiname"] = "ImGuiStorage_BuildSortByKey" defs["ImGuiStorage_BuildSortByKey"][1]["defaults"] = {} defs["ImGuiStorage_BuildSortByKey"][1]["funcname"] = "BuildSortByKey" -defs["ImGuiStorage_BuildSortByKey"][1]["location"] = "imgui" +defs["ImGuiStorage_BuildSortByKey"][1]["location"] = "imgui:1867" defs["ImGuiStorage_BuildSortByKey"][1]["ov_cimguiname"] = "ImGuiStorage_BuildSortByKey" defs["ImGuiStorage_BuildSortByKey"][1]["ret"] = "void" defs["ImGuiStorage_BuildSortByKey"][1]["signature"] = "()" @@ -5187,7 +5199,7 @@ defs["ImGuiStorage_Clear"][1]["call_args"] = "()" defs["ImGuiStorage_Clear"][1]["cimguiname"] = "ImGuiStorage_Clear" defs["ImGuiStorage_Clear"][1]["defaults"] = {} defs["ImGuiStorage_Clear"][1]["funcname"] = "Clear" -defs["ImGuiStorage_Clear"][1]["location"] = "imgui" +defs["ImGuiStorage_Clear"][1]["location"] = "imgui:1844" defs["ImGuiStorage_Clear"][1]["ov_cimguiname"] = "ImGuiStorage_Clear" defs["ImGuiStorage_Clear"][1]["ret"] = "void" defs["ImGuiStorage_Clear"][1]["signature"] = "()" @@ -5212,7 +5224,7 @@ defs["ImGuiStorage_GetBool"][1]["cimguiname"] = "ImGuiStorage_GetBool" defs["ImGuiStorage_GetBool"][1]["defaults"] = {} defs["ImGuiStorage_GetBool"][1]["defaults"]["default_val"] = "false" defs["ImGuiStorage_GetBool"][1]["funcname"] = "GetBool" -defs["ImGuiStorage_GetBool"][1]["location"] = "imgui" +defs["ImGuiStorage_GetBool"][1]["location"] = "imgui:1847" defs["ImGuiStorage_GetBool"][1]["ov_cimguiname"] = "ImGuiStorage_GetBool" defs["ImGuiStorage_GetBool"][1]["ret"] = "bool" defs["ImGuiStorage_GetBool"][1]["signature"] = "(ImGuiID,bool)const" @@ -5237,7 +5249,7 @@ defs["ImGuiStorage_GetBoolRef"][1]["cimguiname"] = "ImGuiStorage_GetBoolRef" defs["ImGuiStorage_GetBoolRef"][1]["defaults"] = {} defs["ImGuiStorage_GetBoolRef"][1]["defaults"]["default_val"] = "false" defs["ImGuiStorage_GetBoolRef"][1]["funcname"] = "GetBoolRef" -defs["ImGuiStorage_GetBoolRef"][1]["location"] = "imgui" +defs["ImGuiStorage_GetBoolRef"][1]["location"] = "imgui:1859" defs["ImGuiStorage_GetBoolRef"][1]["ov_cimguiname"] = "ImGuiStorage_GetBoolRef" defs["ImGuiStorage_GetBoolRef"][1]["ret"] = "bool*" defs["ImGuiStorage_GetBoolRef"][1]["signature"] = "(ImGuiID,bool)" @@ -5262,7 +5274,7 @@ defs["ImGuiStorage_GetFloat"][1]["cimguiname"] = "ImGuiStorage_GetFloat" defs["ImGuiStorage_GetFloat"][1]["defaults"] = {} defs["ImGuiStorage_GetFloat"][1]["defaults"]["default_val"] = "0.0f" defs["ImGuiStorage_GetFloat"][1]["funcname"] = "GetFloat" -defs["ImGuiStorage_GetFloat"][1]["location"] = "imgui" +defs["ImGuiStorage_GetFloat"][1]["location"] = "imgui:1849" defs["ImGuiStorage_GetFloat"][1]["ov_cimguiname"] = "ImGuiStorage_GetFloat" defs["ImGuiStorage_GetFloat"][1]["ret"] = "float" defs["ImGuiStorage_GetFloat"][1]["signature"] = "(ImGuiID,float)const" @@ -5287,7 +5299,7 @@ defs["ImGuiStorage_GetFloatRef"][1]["cimguiname"] = "ImGuiStorage_GetFloatRef" defs["ImGuiStorage_GetFloatRef"][1]["defaults"] = {} defs["ImGuiStorage_GetFloatRef"][1]["defaults"]["default_val"] = "0.0f" defs["ImGuiStorage_GetFloatRef"][1]["funcname"] = "GetFloatRef" -defs["ImGuiStorage_GetFloatRef"][1]["location"] = "imgui" +defs["ImGuiStorage_GetFloatRef"][1]["location"] = "imgui:1860" defs["ImGuiStorage_GetFloatRef"][1]["ov_cimguiname"] = "ImGuiStorage_GetFloatRef" defs["ImGuiStorage_GetFloatRef"][1]["ret"] = "float*" defs["ImGuiStorage_GetFloatRef"][1]["signature"] = "(ImGuiID,float)" @@ -5312,7 +5324,7 @@ defs["ImGuiStorage_GetInt"][1]["cimguiname"] = "ImGuiStorage_GetInt" defs["ImGuiStorage_GetInt"][1]["defaults"] = {} defs["ImGuiStorage_GetInt"][1]["defaults"]["default_val"] = "0" defs["ImGuiStorage_GetInt"][1]["funcname"] = "GetInt" -defs["ImGuiStorage_GetInt"][1]["location"] = "imgui" +defs["ImGuiStorage_GetInt"][1]["location"] = "imgui:1845" defs["ImGuiStorage_GetInt"][1]["ov_cimguiname"] = "ImGuiStorage_GetInt" defs["ImGuiStorage_GetInt"][1]["ret"] = "int" defs["ImGuiStorage_GetInt"][1]["signature"] = "(ImGuiID,int)const" @@ -5337,7 +5349,7 @@ defs["ImGuiStorage_GetIntRef"][1]["cimguiname"] = "ImGuiStorage_GetIntRef" defs["ImGuiStorage_GetIntRef"][1]["defaults"] = {} defs["ImGuiStorage_GetIntRef"][1]["defaults"]["default_val"] = "0" defs["ImGuiStorage_GetIntRef"][1]["funcname"] = "GetIntRef" -defs["ImGuiStorage_GetIntRef"][1]["location"] = "imgui" +defs["ImGuiStorage_GetIntRef"][1]["location"] = "imgui:1858" defs["ImGuiStorage_GetIntRef"][1]["ov_cimguiname"] = "ImGuiStorage_GetIntRef" defs["ImGuiStorage_GetIntRef"][1]["ret"] = "int*" defs["ImGuiStorage_GetIntRef"][1]["signature"] = "(ImGuiID,int)" @@ -5358,7 +5370,7 @@ defs["ImGuiStorage_GetVoidPtr"][1]["call_args"] = "(key)" defs["ImGuiStorage_GetVoidPtr"][1]["cimguiname"] = "ImGuiStorage_GetVoidPtr" defs["ImGuiStorage_GetVoidPtr"][1]["defaults"] = {} defs["ImGuiStorage_GetVoidPtr"][1]["funcname"] = "GetVoidPtr" -defs["ImGuiStorage_GetVoidPtr"][1]["location"] = "imgui" +defs["ImGuiStorage_GetVoidPtr"][1]["location"] = "imgui:1851" defs["ImGuiStorage_GetVoidPtr"][1]["ov_cimguiname"] = "ImGuiStorage_GetVoidPtr" defs["ImGuiStorage_GetVoidPtr"][1]["ret"] = "void*" defs["ImGuiStorage_GetVoidPtr"][1]["signature"] = "(ImGuiID)const" @@ -5381,9 +5393,9 @@ defs["ImGuiStorage_GetVoidPtrRef"][1]["argsoriginal"] = "(ImGuiID key,void* defa defs["ImGuiStorage_GetVoidPtrRef"][1]["call_args"] = "(key,default_val)" defs["ImGuiStorage_GetVoidPtrRef"][1]["cimguiname"] = "ImGuiStorage_GetVoidPtrRef" defs["ImGuiStorage_GetVoidPtrRef"][1]["defaults"] = {} -defs["ImGuiStorage_GetVoidPtrRef"][1]["defaults"]["default_val"] = "((void*)0)" +defs["ImGuiStorage_GetVoidPtrRef"][1]["defaults"]["default_val"] = "NULL" defs["ImGuiStorage_GetVoidPtrRef"][1]["funcname"] = "GetVoidPtrRef" -defs["ImGuiStorage_GetVoidPtrRef"][1]["location"] = "imgui" +defs["ImGuiStorage_GetVoidPtrRef"][1]["location"] = "imgui:1861" defs["ImGuiStorage_GetVoidPtrRef"][1]["ov_cimguiname"] = "ImGuiStorage_GetVoidPtrRef" defs["ImGuiStorage_GetVoidPtrRef"][1]["ret"] = "void**" defs["ImGuiStorage_GetVoidPtrRef"][1]["signature"] = "(ImGuiID,void*)" @@ -5404,7 +5416,7 @@ defs["ImGuiStorage_SetAllInt"][1]["call_args"] = "(val)" defs["ImGuiStorage_SetAllInt"][1]["cimguiname"] = "ImGuiStorage_SetAllInt" defs["ImGuiStorage_SetAllInt"][1]["defaults"] = {} defs["ImGuiStorage_SetAllInt"][1]["funcname"] = "SetAllInt" -defs["ImGuiStorage_SetAllInt"][1]["location"] = "imgui" +defs["ImGuiStorage_SetAllInt"][1]["location"] = "imgui:1864" defs["ImGuiStorage_SetAllInt"][1]["ov_cimguiname"] = "ImGuiStorage_SetAllInt" defs["ImGuiStorage_SetAllInt"][1]["ret"] = "void" defs["ImGuiStorage_SetAllInt"][1]["signature"] = "(int)" @@ -5428,7 +5440,7 @@ defs["ImGuiStorage_SetBool"][1]["call_args"] = "(key,val)" defs["ImGuiStorage_SetBool"][1]["cimguiname"] = "ImGuiStorage_SetBool" defs["ImGuiStorage_SetBool"][1]["defaults"] = {} defs["ImGuiStorage_SetBool"][1]["funcname"] = "SetBool" -defs["ImGuiStorage_SetBool"][1]["location"] = "imgui" +defs["ImGuiStorage_SetBool"][1]["location"] = "imgui:1848" defs["ImGuiStorage_SetBool"][1]["ov_cimguiname"] = "ImGuiStorage_SetBool" defs["ImGuiStorage_SetBool"][1]["ret"] = "void" defs["ImGuiStorage_SetBool"][1]["signature"] = "(ImGuiID,bool)" @@ -5452,7 +5464,7 @@ defs["ImGuiStorage_SetFloat"][1]["call_args"] = "(key,val)" defs["ImGuiStorage_SetFloat"][1]["cimguiname"] = "ImGuiStorage_SetFloat" defs["ImGuiStorage_SetFloat"][1]["defaults"] = {} defs["ImGuiStorage_SetFloat"][1]["funcname"] = "SetFloat" -defs["ImGuiStorage_SetFloat"][1]["location"] = "imgui" +defs["ImGuiStorage_SetFloat"][1]["location"] = "imgui:1850" defs["ImGuiStorage_SetFloat"][1]["ov_cimguiname"] = "ImGuiStorage_SetFloat" defs["ImGuiStorage_SetFloat"][1]["ret"] = "void" defs["ImGuiStorage_SetFloat"][1]["signature"] = "(ImGuiID,float)" @@ -5476,7 +5488,7 @@ defs["ImGuiStorage_SetInt"][1]["call_args"] = "(key,val)" defs["ImGuiStorage_SetInt"][1]["cimguiname"] = "ImGuiStorage_SetInt" defs["ImGuiStorage_SetInt"][1]["defaults"] = {} defs["ImGuiStorage_SetInt"][1]["funcname"] = "SetInt" -defs["ImGuiStorage_SetInt"][1]["location"] = "imgui" +defs["ImGuiStorage_SetInt"][1]["location"] = "imgui:1846" defs["ImGuiStorage_SetInt"][1]["ov_cimguiname"] = "ImGuiStorage_SetInt" defs["ImGuiStorage_SetInt"][1]["ret"] = "void" defs["ImGuiStorage_SetInt"][1]["signature"] = "(ImGuiID,int)" @@ -5500,7 +5512,7 @@ defs["ImGuiStorage_SetVoidPtr"][1]["call_args"] = "(key,val)" defs["ImGuiStorage_SetVoidPtr"][1]["cimguiname"] = "ImGuiStorage_SetVoidPtr" defs["ImGuiStorage_SetVoidPtr"][1]["defaults"] = {} defs["ImGuiStorage_SetVoidPtr"][1]["funcname"] = "SetVoidPtr" -defs["ImGuiStorage_SetVoidPtr"][1]["location"] = "imgui" +defs["ImGuiStorage_SetVoidPtr"][1]["location"] = "imgui:1852" defs["ImGuiStorage_SetVoidPtr"][1]["ov_cimguiname"] = "ImGuiStorage_SetVoidPtr" defs["ImGuiStorage_SetVoidPtr"][1]["ret"] = "void" defs["ImGuiStorage_SetVoidPtr"][1]["signature"] = "(ImGuiID,void*)" @@ -5522,7 +5534,7 @@ defs["ImGuiStyleMod_ImGuiStyleMod"][1]["cimguiname"] = "ImGuiStyleMod_ImGuiStyle defs["ImGuiStyleMod_ImGuiStyleMod"][1]["constructor"] = true defs["ImGuiStyleMod_ImGuiStyleMod"][1]["defaults"] = {} defs["ImGuiStyleMod_ImGuiStyleMod"][1]["funcname"] = "ImGuiStyleMod" -defs["ImGuiStyleMod_ImGuiStyleMod"][1]["location"] = "internal" +defs["ImGuiStyleMod_ImGuiStyleMod"][1]["location"] = "imgui_internal:813" defs["ImGuiStyleMod_ImGuiStyleMod"][1]["ov_cimguiname"] = "ImGuiStyleMod_ImGuiStyleModInt" defs["ImGuiStyleMod_ImGuiStyleMod"][1]["signature"] = "(ImGuiStyleVar,int)" defs["ImGuiStyleMod_ImGuiStyleMod"][1]["stname"] = "ImGuiStyleMod" @@ -5541,7 +5553,7 @@ defs["ImGuiStyleMod_ImGuiStyleMod"][2]["cimguiname"] = "ImGuiStyleMod_ImGuiStyle defs["ImGuiStyleMod_ImGuiStyleMod"][2]["constructor"] = true defs["ImGuiStyleMod_ImGuiStyleMod"][2]["defaults"] = {} defs["ImGuiStyleMod_ImGuiStyleMod"][2]["funcname"] = "ImGuiStyleMod" -defs["ImGuiStyleMod_ImGuiStyleMod"][2]["location"] = "internal" +defs["ImGuiStyleMod_ImGuiStyleMod"][2]["location"] = "imgui_internal:814" defs["ImGuiStyleMod_ImGuiStyleMod"][2]["ov_cimguiname"] = "ImGuiStyleMod_ImGuiStyleModFloat" defs["ImGuiStyleMod_ImGuiStyleMod"][2]["signature"] = "(ImGuiStyleVar,float)" defs["ImGuiStyleMod_ImGuiStyleMod"][2]["stname"] = "ImGuiStyleMod" @@ -5560,7 +5572,7 @@ defs["ImGuiStyleMod_ImGuiStyleMod"][3]["cimguiname"] = "ImGuiStyleMod_ImGuiStyle defs["ImGuiStyleMod_ImGuiStyleMod"][3]["constructor"] = true defs["ImGuiStyleMod_ImGuiStyleMod"][3]["defaults"] = {} defs["ImGuiStyleMod_ImGuiStyleMod"][3]["funcname"] = "ImGuiStyleMod" -defs["ImGuiStyleMod_ImGuiStyleMod"][3]["location"] = "internal" +defs["ImGuiStyleMod_ImGuiStyleMod"][3]["location"] = "imgui_internal:815" defs["ImGuiStyleMod_ImGuiStyleMod"][3]["ov_cimguiname"] = "ImGuiStyleMod_ImGuiStyleModVec2" defs["ImGuiStyleMod_ImGuiStyleMod"][3]["signature"] = "(ImGuiStyleVar,ImVec2)" defs["ImGuiStyleMod_ImGuiStyleMod"][3]["stname"] = "ImGuiStyleMod" @@ -5593,7 +5605,7 @@ defs["ImGuiStyle_ImGuiStyle"][1]["cimguiname"] = "ImGuiStyle_ImGuiStyle" defs["ImGuiStyle_ImGuiStyle"][1]["constructor"] = true defs["ImGuiStyle_ImGuiStyle"][1]["defaults"] = {} defs["ImGuiStyle_ImGuiStyle"][1]["funcname"] = "ImGuiStyle" -defs["ImGuiStyle_ImGuiStyle"][1]["location"] = "imgui" +defs["ImGuiStyle_ImGuiStyle"][1]["location"] = "imgui:1483" defs["ImGuiStyle_ImGuiStyle"][1]["ov_cimguiname"] = "ImGuiStyle_ImGuiStyle" defs["ImGuiStyle_ImGuiStyle"][1]["signature"] = "()" defs["ImGuiStyle_ImGuiStyle"][1]["stname"] = "ImGuiStyle" @@ -5613,7 +5625,7 @@ defs["ImGuiStyle_ScaleAllSizes"][1]["call_args"] = "(scale_factor)" defs["ImGuiStyle_ScaleAllSizes"][1]["cimguiname"] = "ImGuiStyle_ScaleAllSizes" defs["ImGuiStyle_ScaleAllSizes"][1]["defaults"] = {} defs["ImGuiStyle_ScaleAllSizes"][1]["funcname"] = "ScaleAllSizes" -defs["ImGuiStyle_ScaleAllSizes"][1]["location"] = "imgui" +defs["ImGuiStyle_ScaleAllSizes"][1]["location"] = "imgui:1484" defs["ImGuiStyle_ScaleAllSizes"][1]["ov_cimguiname"] = "ImGuiStyle_ScaleAllSizes" defs["ImGuiStyle_ScaleAllSizes"][1]["ret"] = "void" defs["ImGuiStyle_ScaleAllSizes"][1]["signature"] = "(float)" @@ -5650,7 +5662,7 @@ defs["ImGuiTabBar_GetTabName"][1]["call_args"] = "(tab)" defs["ImGuiTabBar_GetTabName"][1]["cimguiname"] = "ImGuiTabBar_GetTabName" defs["ImGuiTabBar_GetTabName"][1]["defaults"] = {} defs["ImGuiTabBar_GetTabName"][1]["funcname"] = "GetTabName" -defs["ImGuiTabBar_GetTabName"][1]["location"] = "internal" +defs["ImGuiTabBar_GetTabName"][1]["location"] = "imgui_internal:1748" defs["ImGuiTabBar_GetTabName"][1]["ov_cimguiname"] = "ImGuiTabBar_GetTabName" defs["ImGuiTabBar_GetTabName"][1]["ret"] = "const char*" defs["ImGuiTabBar_GetTabName"][1]["signature"] = "(const ImGuiTabItem*)const" @@ -5671,7 +5683,7 @@ defs["ImGuiTabBar_GetTabOrder"][1]["call_args"] = "(tab)" defs["ImGuiTabBar_GetTabOrder"][1]["cimguiname"] = "ImGuiTabBar_GetTabOrder" defs["ImGuiTabBar_GetTabOrder"][1]["defaults"] = {} defs["ImGuiTabBar_GetTabOrder"][1]["funcname"] = "GetTabOrder" -defs["ImGuiTabBar_GetTabOrder"][1]["location"] = "internal" +defs["ImGuiTabBar_GetTabOrder"][1]["location"] = "imgui_internal:1747" defs["ImGuiTabBar_GetTabOrder"][1]["ov_cimguiname"] = "ImGuiTabBar_GetTabOrder" defs["ImGuiTabBar_GetTabOrder"][1]["ret"] = "int" defs["ImGuiTabBar_GetTabOrder"][1]["signature"] = "(const ImGuiTabItem*)const" @@ -5687,7 +5699,7 @@ defs["ImGuiTabBar_ImGuiTabBar"][1]["cimguiname"] = "ImGuiTabBar_ImGuiTabBar" defs["ImGuiTabBar_ImGuiTabBar"][1]["constructor"] = true defs["ImGuiTabBar_ImGuiTabBar"][1]["defaults"] = {} defs["ImGuiTabBar_ImGuiTabBar"][1]["funcname"] = "ImGuiTabBar" -defs["ImGuiTabBar_ImGuiTabBar"][1]["location"] = "internal" +defs["ImGuiTabBar_ImGuiTabBar"][1]["location"] = "imgui_internal:1746" defs["ImGuiTabBar_ImGuiTabBar"][1]["ov_cimguiname"] = "ImGuiTabBar_ImGuiTabBar" defs["ImGuiTabBar_ImGuiTabBar"][1]["signature"] = "()" defs["ImGuiTabBar_ImGuiTabBar"][1]["stname"] = "ImGuiTabBar" @@ -5718,7 +5730,7 @@ defs["ImGuiTabItem_ImGuiTabItem"][1]["cimguiname"] = "ImGuiTabItem_ImGuiTabItem" defs["ImGuiTabItem_ImGuiTabItem"][1]["constructor"] = true defs["ImGuiTabItem_ImGuiTabItem"][1]["defaults"] = {} defs["ImGuiTabItem_ImGuiTabItem"][1]["funcname"] = "ImGuiTabItem" -defs["ImGuiTabItem_ImGuiTabItem"][1]["location"] = "internal" +defs["ImGuiTabItem_ImGuiTabItem"][1]["location"] = "imgui_internal:1715" defs["ImGuiTabItem_ImGuiTabItem"][1]["ov_cimguiname"] = "ImGuiTabItem_ImGuiTabItem" defs["ImGuiTabItem_ImGuiTabItem"][1]["signature"] = "()" defs["ImGuiTabItem_ImGuiTabItem"][1]["stname"] = "ImGuiTabItem" @@ -5749,7 +5761,7 @@ defs["ImGuiTextBuffer_ImGuiTextBuffer"][1]["cimguiname"] = "ImGuiTextBuffer_ImGu defs["ImGuiTextBuffer_ImGuiTextBuffer"][1]["constructor"] = true defs["ImGuiTextBuffer_ImGuiTextBuffer"][1]["defaults"] = {} defs["ImGuiTextBuffer_ImGuiTextBuffer"][1]["funcname"] = "ImGuiTextBuffer" -defs["ImGuiTextBuffer_ImGuiTextBuffer"][1]["location"] = "imgui" +defs["ImGuiTextBuffer_ImGuiTextBuffer"][1]["location"] = "imgui:1805" defs["ImGuiTextBuffer_ImGuiTextBuffer"][1]["ov_cimguiname"] = "ImGuiTextBuffer_ImGuiTextBuffer" defs["ImGuiTextBuffer_ImGuiTextBuffer"][1]["signature"] = "()" defs["ImGuiTextBuffer_ImGuiTextBuffer"][1]["stname"] = "ImGuiTextBuffer" @@ -5771,9 +5783,9 @@ defs["ImGuiTextBuffer_append"][1]["argsoriginal"] = "(const char* str,const char defs["ImGuiTextBuffer_append"][1]["call_args"] = "(str,str_end)" defs["ImGuiTextBuffer_append"][1]["cimguiname"] = "ImGuiTextBuffer_append" defs["ImGuiTextBuffer_append"][1]["defaults"] = {} -defs["ImGuiTextBuffer_append"][1]["defaults"]["str_end"] = "((void*)0)" +defs["ImGuiTextBuffer_append"][1]["defaults"]["str_end"] = "NULL" defs["ImGuiTextBuffer_append"][1]["funcname"] = "append" -defs["ImGuiTextBuffer_append"][1]["location"] = "imgui" +defs["ImGuiTextBuffer_append"][1]["location"] = "imgui:1814" defs["ImGuiTextBuffer_append"][1]["ov_cimguiname"] = "ImGuiTextBuffer_append" defs["ImGuiTextBuffer_append"][1]["ret"] = "void" defs["ImGuiTextBuffer_append"][1]["signature"] = "(const char*,const char*)" @@ -5798,7 +5810,7 @@ defs["ImGuiTextBuffer_appendf"][1]["cimguiname"] = "ImGuiTextBuffer_appendf" defs["ImGuiTextBuffer_appendf"][1]["defaults"] = {} defs["ImGuiTextBuffer_appendf"][1]["funcname"] = "appendf" defs["ImGuiTextBuffer_appendf"][1]["isvararg"] = "...)" -defs["ImGuiTextBuffer_appendf"][1]["location"] = "imgui" +defs["ImGuiTextBuffer_appendf"][1]["location"] = "imgui:1815" defs["ImGuiTextBuffer_appendf"][1]["manual"] = true defs["ImGuiTextBuffer_appendf"][1]["ov_cimguiname"] = "ImGuiTextBuffer_appendf" defs["ImGuiTextBuffer_appendf"][1]["ret"] = "void" @@ -5823,7 +5835,7 @@ defs["ImGuiTextBuffer_appendfv"][1]["call_args"] = "(fmt,args)" defs["ImGuiTextBuffer_appendfv"][1]["cimguiname"] = "ImGuiTextBuffer_appendfv" defs["ImGuiTextBuffer_appendfv"][1]["defaults"] = {} defs["ImGuiTextBuffer_appendfv"][1]["funcname"] = "appendfv" -defs["ImGuiTextBuffer_appendfv"][1]["location"] = "imgui" +defs["ImGuiTextBuffer_appendfv"][1]["location"] = "imgui:1816" defs["ImGuiTextBuffer_appendfv"][1]["ov_cimguiname"] = "ImGuiTextBuffer_appendfv" defs["ImGuiTextBuffer_appendfv"][1]["ret"] = "void" defs["ImGuiTextBuffer_appendfv"][1]["signature"] = "(const char*,va_list)" @@ -5841,7 +5853,7 @@ defs["ImGuiTextBuffer_begin"][1]["call_args"] = "()" defs["ImGuiTextBuffer_begin"][1]["cimguiname"] = "ImGuiTextBuffer_begin" defs["ImGuiTextBuffer_begin"][1]["defaults"] = {} defs["ImGuiTextBuffer_begin"][1]["funcname"] = "begin" -defs["ImGuiTextBuffer_begin"][1]["location"] = "imgui" +defs["ImGuiTextBuffer_begin"][1]["location"] = "imgui:1807" defs["ImGuiTextBuffer_begin"][1]["ov_cimguiname"] = "ImGuiTextBuffer_begin" defs["ImGuiTextBuffer_begin"][1]["ret"] = "const char*" defs["ImGuiTextBuffer_begin"][1]["signature"] = "()const" @@ -5859,7 +5871,7 @@ defs["ImGuiTextBuffer_c_str"][1]["call_args"] = "()" defs["ImGuiTextBuffer_c_str"][1]["cimguiname"] = "ImGuiTextBuffer_c_str" defs["ImGuiTextBuffer_c_str"][1]["defaults"] = {} defs["ImGuiTextBuffer_c_str"][1]["funcname"] = "c_str" -defs["ImGuiTextBuffer_c_str"][1]["location"] = "imgui" +defs["ImGuiTextBuffer_c_str"][1]["location"] = "imgui:1813" defs["ImGuiTextBuffer_c_str"][1]["ov_cimguiname"] = "ImGuiTextBuffer_c_str" defs["ImGuiTextBuffer_c_str"][1]["ret"] = "const char*" defs["ImGuiTextBuffer_c_str"][1]["signature"] = "()const" @@ -5877,7 +5889,7 @@ defs["ImGuiTextBuffer_clear"][1]["call_args"] = "()" defs["ImGuiTextBuffer_clear"][1]["cimguiname"] = "ImGuiTextBuffer_clear" defs["ImGuiTextBuffer_clear"][1]["defaults"] = {} defs["ImGuiTextBuffer_clear"][1]["funcname"] = "clear" -defs["ImGuiTextBuffer_clear"][1]["location"] = "imgui" +defs["ImGuiTextBuffer_clear"][1]["location"] = "imgui:1811" defs["ImGuiTextBuffer_clear"][1]["ov_cimguiname"] = "ImGuiTextBuffer_clear" defs["ImGuiTextBuffer_clear"][1]["ret"] = "void" defs["ImGuiTextBuffer_clear"][1]["signature"] = "()" @@ -5911,7 +5923,7 @@ defs["ImGuiTextBuffer_empty"][1]["call_args"] = "()" defs["ImGuiTextBuffer_empty"][1]["cimguiname"] = "ImGuiTextBuffer_empty" defs["ImGuiTextBuffer_empty"][1]["defaults"] = {} defs["ImGuiTextBuffer_empty"][1]["funcname"] = "empty" -defs["ImGuiTextBuffer_empty"][1]["location"] = "imgui" +defs["ImGuiTextBuffer_empty"][1]["location"] = "imgui:1810" defs["ImGuiTextBuffer_empty"][1]["ov_cimguiname"] = "ImGuiTextBuffer_empty" defs["ImGuiTextBuffer_empty"][1]["ret"] = "bool" defs["ImGuiTextBuffer_empty"][1]["signature"] = "()const" @@ -5929,7 +5941,7 @@ defs["ImGuiTextBuffer_end"][1]["call_args"] = "()" defs["ImGuiTextBuffer_end"][1]["cimguiname"] = "ImGuiTextBuffer_end" defs["ImGuiTextBuffer_end"][1]["defaults"] = {} defs["ImGuiTextBuffer_end"][1]["funcname"] = "end" -defs["ImGuiTextBuffer_end"][1]["location"] = "imgui" +defs["ImGuiTextBuffer_end"][1]["location"] = "imgui:1808" defs["ImGuiTextBuffer_end"][1]["ov_cimguiname"] = "ImGuiTextBuffer_end" defs["ImGuiTextBuffer_end"][1]["ret"] = "const char*" defs["ImGuiTextBuffer_end"][1]["signature"] = "()const" @@ -5950,7 +5962,7 @@ defs["ImGuiTextBuffer_reserve"][1]["call_args"] = "(capacity)" defs["ImGuiTextBuffer_reserve"][1]["cimguiname"] = "ImGuiTextBuffer_reserve" defs["ImGuiTextBuffer_reserve"][1]["defaults"] = {} defs["ImGuiTextBuffer_reserve"][1]["funcname"] = "reserve" -defs["ImGuiTextBuffer_reserve"][1]["location"] = "imgui" +defs["ImGuiTextBuffer_reserve"][1]["location"] = "imgui:1812" defs["ImGuiTextBuffer_reserve"][1]["ov_cimguiname"] = "ImGuiTextBuffer_reserve" defs["ImGuiTextBuffer_reserve"][1]["ret"] = "void" defs["ImGuiTextBuffer_reserve"][1]["signature"] = "(int)" @@ -5968,7 +5980,7 @@ defs["ImGuiTextBuffer_size"][1]["call_args"] = "()" defs["ImGuiTextBuffer_size"][1]["cimguiname"] = "ImGuiTextBuffer_size" defs["ImGuiTextBuffer_size"][1]["defaults"] = {} defs["ImGuiTextBuffer_size"][1]["funcname"] = "size" -defs["ImGuiTextBuffer_size"][1]["location"] = "imgui" +defs["ImGuiTextBuffer_size"][1]["location"] = "imgui:1809" defs["ImGuiTextBuffer_size"][1]["ov_cimguiname"] = "ImGuiTextBuffer_size" defs["ImGuiTextBuffer_size"][1]["ret"] = "int" defs["ImGuiTextBuffer_size"][1]["signature"] = "()const" @@ -5986,7 +5998,7 @@ defs["ImGuiTextFilter_Build"][1]["call_args"] = "()" defs["ImGuiTextFilter_Build"][1]["cimguiname"] = "ImGuiTextFilter_Build" defs["ImGuiTextFilter_Build"][1]["defaults"] = {} defs["ImGuiTextFilter_Build"][1]["funcname"] = "Build" -defs["ImGuiTextFilter_Build"][1]["location"] = "imgui" +defs["ImGuiTextFilter_Build"][1]["location"] = "imgui:1778" defs["ImGuiTextFilter_Build"][1]["ov_cimguiname"] = "ImGuiTextFilter_Build" defs["ImGuiTextFilter_Build"][1]["ret"] = "void" defs["ImGuiTextFilter_Build"][1]["signature"] = "()" @@ -6004,7 +6016,7 @@ defs["ImGuiTextFilter_Clear"][1]["call_args"] = "()" defs["ImGuiTextFilter_Clear"][1]["cimguiname"] = "ImGuiTextFilter_Clear" defs["ImGuiTextFilter_Clear"][1]["defaults"] = {} defs["ImGuiTextFilter_Clear"][1]["funcname"] = "Clear" -defs["ImGuiTextFilter_Clear"][1]["location"] = "imgui" +defs["ImGuiTextFilter_Clear"][1]["location"] = "imgui:1779" defs["ImGuiTextFilter_Clear"][1]["ov_cimguiname"] = "ImGuiTextFilter_Clear" defs["ImGuiTextFilter_Clear"][1]["ret"] = "void" defs["ImGuiTextFilter_Clear"][1]["signature"] = "()" @@ -6030,7 +6042,7 @@ defs["ImGuiTextFilter_Draw"][1]["defaults"] = {} defs["ImGuiTextFilter_Draw"][1]["defaults"]["label"] = "\"Filter(inc,-exc)\"" defs["ImGuiTextFilter_Draw"][1]["defaults"]["width"] = "0.0f" defs["ImGuiTextFilter_Draw"][1]["funcname"] = "Draw" -defs["ImGuiTextFilter_Draw"][1]["location"] = "imgui" +defs["ImGuiTextFilter_Draw"][1]["location"] = "imgui:1776" defs["ImGuiTextFilter_Draw"][1]["ov_cimguiname"] = "ImGuiTextFilter_Draw" defs["ImGuiTextFilter_Draw"][1]["ret"] = "bool" defs["ImGuiTextFilter_Draw"][1]["signature"] = "(const char*,float)" @@ -6050,7 +6062,7 @@ defs["ImGuiTextFilter_ImGuiTextFilter"][1]["constructor"] = true defs["ImGuiTextFilter_ImGuiTextFilter"][1]["defaults"] = {} defs["ImGuiTextFilter_ImGuiTextFilter"][1]["defaults"]["default_filter"] = "\"\"" defs["ImGuiTextFilter_ImGuiTextFilter"][1]["funcname"] = "ImGuiTextFilter" -defs["ImGuiTextFilter_ImGuiTextFilter"][1]["location"] = "imgui" +defs["ImGuiTextFilter_ImGuiTextFilter"][1]["location"] = "imgui:1775" defs["ImGuiTextFilter_ImGuiTextFilter"][1]["ov_cimguiname"] = "ImGuiTextFilter_ImGuiTextFilter" defs["ImGuiTextFilter_ImGuiTextFilter"][1]["signature"] = "(const char*)" defs["ImGuiTextFilter_ImGuiTextFilter"][1]["stname"] = "ImGuiTextFilter" @@ -6067,7 +6079,7 @@ defs["ImGuiTextFilter_IsActive"][1]["call_args"] = "()" defs["ImGuiTextFilter_IsActive"][1]["cimguiname"] = "ImGuiTextFilter_IsActive" defs["ImGuiTextFilter_IsActive"][1]["defaults"] = {} defs["ImGuiTextFilter_IsActive"][1]["funcname"] = "IsActive" -defs["ImGuiTextFilter_IsActive"][1]["location"] = "imgui" +defs["ImGuiTextFilter_IsActive"][1]["location"] = "imgui:1780" defs["ImGuiTextFilter_IsActive"][1]["ov_cimguiname"] = "ImGuiTextFilter_IsActive" defs["ImGuiTextFilter_IsActive"][1]["ret"] = "bool" defs["ImGuiTextFilter_IsActive"][1]["signature"] = "()const" @@ -6090,9 +6102,9 @@ defs["ImGuiTextFilter_PassFilter"][1]["argsoriginal"] = "(const char* text,const defs["ImGuiTextFilter_PassFilter"][1]["call_args"] = "(text,text_end)" defs["ImGuiTextFilter_PassFilter"][1]["cimguiname"] = "ImGuiTextFilter_PassFilter" defs["ImGuiTextFilter_PassFilter"][1]["defaults"] = {} -defs["ImGuiTextFilter_PassFilter"][1]["defaults"]["text_end"] = "((void*)0)" +defs["ImGuiTextFilter_PassFilter"][1]["defaults"]["text_end"] = "NULL" defs["ImGuiTextFilter_PassFilter"][1]["funcname"] = "PassFilter" -defs["ImGuiTextFilter_PassFilter"][1]["location"] = "imgui" +defs["ImGuiTextFilter_PassFilter"][1]["location"] = "imgui:1777" defs["ImGuiTextFilter_PassFilter"][1]["ov_cimguiname"] = "ImGuiTextFilter_PassFilter" defs["ImGuiTextFilter_PassFilter"][1]["ret"] = "bool" defs["ImGuiTextFilter_PassFilter"][1]["signature"] = "(const char*,const char*)const" @@ -6124,7 +6136,7 @@ defs["ImGuiTextRange_ImGuiTextRange"][1]["cimguiname"] = "ImGuiTextRange_ImGuiTe defs["ImGuiTextRange_ImGuiTextRange"][1]["constructor"] = true defs["ImGuiTextRange_ImGuiTextRange"][1]["defaults"] = {} defs["ImGuiTextRange_ImGuiTextRange"][1]["funcname"] = "ImGuiTextRange" -defs["ImGuiTextRange_ImGuiTextRange"][1]["location"] = "imgui" +defs["ImGuiTextRange_ImGuiTextRange"][1]["location"] = "imgui:1788" defs["ImGuiTextRange_ImGuiTextRange"][1]["ov_cimguiname"] = "ImGuiTextRange_ImGuiTextRangeNil" defs["ImGuiTextRange_ImGuiTextRange"][1]["signature"] = "()" defs["ImGuiTextRange_ImGuiTextRange"][1]["stname"] = "ImGuiTextRange" @@ -6143,7 +6155,7 @@ defs["ImGuiTextRange_ImGuiTextRange"][2]["cimguiname"] = "ImGuiTextRange_ImGuiTe defs["ImGuiTextRange_ImGuiTextRange"][2]["constructor"] = true defs["ImGuiTextRange_ImGuiTextRange"][2]["defaults"] = {} defs["ImGuiTextRange_ImGuiTextRange"][2]["funcname"] = "ImGuiTextRange" -defs["ImGuiTextRange_ImGuiTextRange"][2]["location"] = "imgui" +defs["ImGuiTextRange_ImGuiTextRange"][2]["location"] = "imgui:1789" defs["ImGuiTextRange_ImGuiTextRange"][2]["ov_cimguiname"] = "ImGuiTextRange_ImGuiTextRangeStr" defs["ImGuiTextRange_ImGuiTextRange"][2]["signature"] = "(const char*,const char*)" defs["ImGuiTextRange_ImGuiTextRange"][2]["stname"] = "ImGuiTextRange" @@ -6177,7 +6189,7 @@ defs["ImGuiTextRange_empty"][1]["call_args"] = "()" defs["ImGuiTextRange_empty"][1]["cimguiname"] = "ImGuiTextRange_empty" defs["ImGuiTextRange_empty"][1]["defaults"] = {} defs["ImGuiTextRange_empty"][1]["funcname"] = "empty" -defs["ImGuiTextRange_empty"][1]["location"] = "imgui" +defs["ImGuiTextRange_empty"][1]["location"] = "imgui:1790" defs["ImGuiTextRange_empty"][1]["ov_cimguiname"] = "ImGuiTextRange_empty" defs["ImGuiTextRange_empty"][1]["ret"] = "bool" defs["ImGuiTextRange_empty"][1]["signature"] = "()const" @@ -6201,7 +6213,7 @@ defs["ImGuiTextRange_split"][1]["call_args"] = "(separator,out)" defs["ImGuiTextRange_split"][1]["cimguiname"] = "ImGuiTextRange_split" defs["ImGuiTextRange_split"][1]["defaults"] = {} defs["ImGuiTextRange_split"][1]["funcname"] = "split" -defs["ImGuiTextRange_split"][1]["location"] = "imgui" +defs["ImGuiTextRange_split"][1]["location"] = "imgui:1791" defs["ImGuiTextRange_split"][1]["ov_cimguiname"] = "ImGuiTextRange_split" defs["ImGuiTextRange_split"][1]["ret"] = "void" defs["ImGuiTextRange_split"][1]["signature"] = "(char,ImVector_ImGuiTextRange*)const" @@ -6219,7 +6231,7 @@ defs["ImGuiWindowSettings_GetName"][1]["call_args"] = "()" defs["ImGuiWindowSettings_GetName"][1]["cimguiname"] = "ImGuiWindowSettings_GetName" defs["ImGuiWindowSettings_GetName"][1]["defaults"] = {} defs["ImGuiWindowSettings_GetName"][1]["funcname"] = "GetName" -defs["ImGuiWindowSettings_GetName"][1]["location"] = "internal" +defs["ImGuiWindowSettings_GetName"][1]["location"] = "imgui_internal:1078" defs["ImGuiWindowSettings_GetName"][1]["ov_cimguiname"] = "ImGuiWindowSettings_GetName" defs["ImGuiWindowSettings_GetName"][1]["ret"] = "char*" defs["ImGuiWindowSettings_GetName"][1]["signature"] = "()" @@ -6235,7 +6247,7 @@ defs["ImGuiWindowSettings_ImGuiWindowSettings"][1]["cimguiname"] = "ImGuiWindowS defs["ImGuiWindowSettings_ImGuiWindowSettings"][1]["constructor"] = true defs["ImGuiWindowSettings_ImGuiWindowSettings"][1]["defaults"] = {} defs["ImGuiWindowSettings_ImGuiWindowSettings"][1]["funcname"] = "ImGuiWindowSettings" -defs["ImGuiWindowSettings_ImGuiWindowSettings"][1]["location"] = "internal" +defs["ImGuiWindowSettings_ImGuiWindowSettings"][1]["location"] = "imgui_internal:1077" defs["ImGuiWindowSettings_ImGuiWindowSettings"][1]["ov_cimguiname"] = "ImGuiWindowSettings_ImGuiWindowSettings" defs["ImGuiWindowSettings_ImGuiWindowSettings"][1]["signature"] = "()" defs["ImGuiWindowSettings_ImGuiWindowSettings"][1]["stname"] = "ImGuiWindowSettings" @@ -6266,7 +6278,7 @@ defs["ImGuiWindowTempData_ImGuiWindowTempData"][1]["cimguiname"] = "ImGuiWindowT defs["ImGuiWindowTempData_ImGuiWindowTempData"][1]["constructor"] = true defs["ImGuiWindowTempData_ImGuiWindowTempData"][1]["defaults"] = {} defs["ImGuiWindowTempData_ImGuiWindowTempData"][1]["funcname"] = "ImGuiWindowTempData" -defs["ImGuiWindowTempData_ImGuiWindowTempData"][1]["location"] = "internal" +defs["ImGuiWindowTempData_ImGuiWindowTempData"][1]["location"] = "imgui_internal:1526" defs["ImGuiWindowTempData_ImGuiWindowTempData"][1]["ov_cimguiname"] = "ImGuiWindowTempData_ImGuiWindowTempData" defs["ImGuiWindowTempData_ImGuiWindowTempData"][1]["signature"] = "()" defs["ImGuiWindowTempData_ImGuiWindowTempData"][1]["stname"] = "ImGuiWindowTempData" @@ -6299,7 +6311,7 @@ defs["ImGuiWindow_CalcFontSize"][1]["call_args"] = "()" defs["ImGuiWindow_CalcFontSize"][1]["cimguiname"] = "ImGuiWindow_CalcFontSize" defs["ImGuiWindow_CalcFontSize"][1]["defaults"] = {} defs["ImGuiWindow_CalcFontSize"][1]["funcname"] = "CalcFontSize" -defs["ImGuiWindow_CalcFontSize"][1]["location"] = "internal" +defs["ImGuiWindow_CalcFontSize"][1]["location"] = "imgui_internal:1664" defs["ImGuiWindow_CalcFontSize"][1]["ov_cimguiname"] = "ImGuiWindow_CalcFontSize" defs["ImGuiWindow_CalcFontSize"][1]["ret"] = "float" defs["ImGuiWindow_CalcFontSize"][1]["signature"] = "()const" @@ -6322,9 +6334,9 @@ defs["ImGuiWindow_GetID"][1]["argsoriginal"] = "(const char* str,const char* str defs["ImGuiWindow_GetID"][1]["call_args"] = "(str,str_end)" defs["ImGuiWindow_GetID"][1]["cimguiname"] = "ImGuiWindow_GetID" defs["ImGuiWindow_GetID"][1]["defaults"] = {} -defs["ImGuiWindow_GetID"][1]["defaults"]["str_end"] = "((void*)0)" +defs["ImGuiWindow_GetID"][1]["defaults"]["str_end"] = "NULL" defs["ImGuiWindow_GetID"][1]["funcname"] = "GetID" -defs["ImGuiWindow_GetID"][1]["location"] = "internal" +defs["ImGuiWindow_GetID"][1]["location"] = "imgui_internal:1654" defs["ImGuiWindow_GetID"][1]["ov_cimguiname"] = "ImGuiWindow_GetIDStr" defs["ImGuiWindow_GetID"][1]["ret"] = "ImGuiID" defs["ImGuiWindow_GetID"][1]["signature"] = "(const char*,const char*)" @@ -6343,7 +6355,7 @@ defs["ImGuiWindow_GetID"][2]["call_args"] = "(ptr)" defs["ImGuiWindow_GetID"][2]["cimguiname"] = "ImGuiWindow_GetID" defs["ImGuiWindow_GetID"][2]["defaults"] = {} defs["ImGuiWindow_GetID"][2]["funcname"] = "GetID" -defs["ImGuiWindow_GetID"][2]["location"] = "internal" +defs["ImGuiWindow_GetID"][2]["location"] = "imgui_internal:1655" defs["ImGuiWindow_GetID"][2]["ov_cimguiname"] = "ImGuiWindow_GetIDPtr" defs["ImGuiWindow_GetID"][2]["ret"] = "ImGuiID" defs["ImGuiWindow_GetID"][2]["signature"] = "(const void*)" @@ -6362,7 +6374,7 @@ defs["ImGuiWindow_GetID"][3]["call_args"] = "(n)" defs["ImGuiWindow_GetID"][3]["cimguiname"] = "ImGuiWindow_GetID" defs["ImGuiWindow_GetID"][3]["defaults"] = {} defs["ImGuiWindow_GetID"][3]["funcname"] = "GetID" -defs["ImGuiWindow_GetID"][3]["location"] = "internal" +defs["ImGuiWindow_GetID"][3]["location"] = "imgui_internal:1656" defs["ImGuiWindow_GetID"][3]["ov_cimguiname"] = "ImGuiWindow_GetIDInt" defs["ImGuiWindow_GetID"][3]["ret"] = "ImGuiID" defs["ImGuiWindow_GetID"][3]["signature"] = "(int)" @@ -6385,7 +6397,7 @@ defs["ImGuiWindow_GetIDFromRectangle"][1]["call_args"] = "(r_abs)" defs["ImGuiWindow_GetIDFromRectangle"][1]["cimguiname"] = "ImGuiWindow_GetIDFromRectangle" defs["ImGuiWindow_GetIDFromRectangle"][1]["defaults"] = {} defs["ImGuiWindow_GetIDFromRectangle"][1]["funcname"] = "GetIDFromRectangle" -defs["ImGuiWindow_GetIDFromRectangle"][1]["location"] = "internal" +defs["ImGuiWindow_GetIDFromRectangle"][1]["location"] = "imgui_internal:1660" defs["ImGuiWindow_GetIDFromRectangle"][1]["ov_cimguiname"] = "ImGuiWindow_GetIDFromRectangle" defs["ImGuiWindow_GetIDFromRectangle"][1]["ret"] = "ImGuiID" defs["ImGuiWindow_GetIDFromRectangle"][1]["signature"] = "(const ImRect)" @@ -6408,9 +6420,9 @@ defs["ImGuiWindow_GetIDNoKeepAlive"][1]["argsoriginal"] = "(const char* str,cons defs["ImGuiWindow_GetIDNoKeepAlive"][1]["call_args"] = "(str,str_end)" defs["ImGuiWindow_GetIDNoKeepAlive"][1]["cimguiname"] = "ImGuiWindow_GetIDNoKeepAlive" defs["ImGuiWindow_GetIDNoKeepAlive"][1]["defaults"] = {} -defs["ImGuiWindow_GetIDNoKeepAlive"][1]["defaults"]["str_end"] = "((void*)0)" +defs["ImGuiWindow_GetIDNoKeepAlive"][1]["defaults"]["str_end"] = "NULL" defs["ImGuiWindow_GetIDNoKeepAlive"][1]["funcname"] = "GetIDNoKeepAlive" -defs["ImGuiWindow_GetIDNoKeepAlive"][1]["location"] = "internal" +defs["ImGuiWindow_GetIDNoKeepAlive"][1]["location"] = "imgui_internal:1657" defs["ImGuiWindow_GetIDNoKeepAlive"][1]["ov_cimguiname"] = "ImGuiWindow_GetIDNoKeepAliveStr" defs["ImGuiWindow_GetIDNoKeepAlive"][1]["ret"] = "ImGuiID" defs["ImGuiWindow_GetIDNoKeepAlive"][1]["signature"] = "(const char*,const char*)" @@ -6429,7 +6441,7 @@ defs["ImGuiWindow_GetIDNoKeepAlive"][2]["call_args"] = "(ptr)" defs["ImGuiWindow_GetIDNoKeepAlive"][2]["cimguiname"] = "ImGuiWindow_GetIDNoKeepAlive" defs["ImGuiWindow_GetIDNoKeepAlive"][2]["defaults"] = {} defs["ImGuiWindow_GetIDNoKeepAlive"][2]["funcname"] = "GetIDNoKeepAlive" -defs["ImGuiWindow_GetIDNoKeepAlive"][2]["location"] = "internal" +defs["ImGuiWindow_GetIDNoKeepAlive"][2]["location"] = "imgui_internal:1658" defs["ImGuiWindow_GetIDNoKeepAlive"][2]["ov_cimguiname"] = "ImGuiWindow_GetIDNoKeepAlivePtr" defs["ImGuiWindow_GetIDNoKeepAlive"][2]["ret"] = "ImGuiID" defs["ImGuiWindow_GetIDNoKeepAlive"][2]["signature"] = "(const void*)" @@ -6448,7 +6460,7 @@ defs["ImGuiWindow_GetIDNoKeepAlive"][3]["call_args"] = "(n)" defs["ImGuiWindow_GetIDNoKeepAlive"][3]["cimguiname"] = "ImGuiWindow_GetIDNoKeepAlive" defs["ImGuiWindow_GetIDNoKeepAlive"][3]["defaults"] = {} defs["ImGuiWindow_GetIDNoKeepAlive"][3]["funcname"] = "GetIDNoKeepAlive" -defs["ImGuiWindow_GetIDNoKeepAlive"][3]["location"] = "internal" +defs["ImGuiWindow_GetIDNoKeepAlive"][3]["location"] = "imgui_internal:1659" defs["ImGuiWindow_GetIDNoKeepAlive"][3]["ov_cimguiname"] = "ImGuiWindow_GetIDNoKeepAliveInt" defs["ImGuiWindow_GetIDNoKeepAlive"][3]["ret"] = "ImGuiID" defs["ImGuiWindow_GetIDNoKeepAlive"][3]["signature"] = "(int)" @@ -6472,7 +6484,7 @@ defs["ImGuiWindow_ImGuiWindow"][1]["cimguiname"] = "ImGuiWindow_ImGuiWindow" defs["ImGuiWindow_ImGuiWindow"][1]["constructor"] = true defs["ImGuiWindow_ImGuiWindow"][1]["defaults"] = {} defs["ImGuiWindow_ImGuiWindow"][1]["funcname"] = "ImGuiWindow" -defs["ImGuiWindow_ImGuiWindow"][1]["location"] = "internal" +defs["ImGuiWindow_ImGuiWindow"][1]["location"] = "imgui_internal:1650" defs["ImGuiWindow_ImGuiWindow"][1]["ov_cimguiname"] = "ImGuiWindow_ImGuiWindow" defs["ImGuiWindow_ImGuiWindow"][1]["signature"] = "(ImGuiContext*,const char*)" defs["ImGuiWindow_ImGuiWindow"][1]["stname"] = "ImGuiWindow" @@ -6489,7 +6501,7 @@ defs["ImGuiWindow_MenuBarHeight"][1]["call_args"] = "()" defs["ImGuiWindow_MenuBarHeight"][1]["cimguiname"] = "ImGuiWindow_MenuBarHeight" defs["ImGuiWindow_MenuBarHeight"][1]["defaults"] = {} defs["ImGuiWindow_MenuBarHeight"][1]["funcname"] = "MenuBarHeight" -defs["ImGuiWindow_MenuBarHeight"][1]["location"] = "internal" +defs["ImGuiWindow_MenuBarHeight"][1]["location"] = "imgui_internal:1667" defs["ImGuiWindow_MenuBarHeight"][1]["ov_cimguiname"] = "ImGuiWindow_MenuBarHeight" defs["ImGuiWindow_MenuBarHeight"][1]["ret"] = "float" defs["ImGuiWindow_MenuBarHeight"][1]["signature"] = "()const" @@ -6510,7 +6522,7 @@ defs["ImGuiWindow_MenuBarRect"][1]["call_args"] = "()" defs["ImGuiWindow_MenuBarRect"][1]["cimguiname"] = "ImGuiWindow_MenuBarRect" defs["ImGuiWindow_MenuBarRect"][1]["defaults"] = {} defs["ImGuiWindow_MenuBarRect"][1]["funcname"] = "MenuBarRect" -defs["ImGuiWindow_MenuBarRect"][1]["location"] = "internal" +defs["ImGuiWindow_MenuBarRect"][1]["location"] = "imgui_internal:1668" defs["ImGuiWindow_MenuBarRect"][1]["nonUDT"] = 1 defs["ImGuiWindow_MenuBarRect"][1]["ov_cimguiname"] = "ImGuiWindow_MenuBarRect" defs["ImGuiWindow_MenuBarRect"][1]["ret"] = "void" @@ -6532,7 +6544,7 @@ defs["ImGuiWindow_Rect"][1]["call_args"] = "()" defs["ImGuiWindow_Rect"][1]["cimguiname"] = "ImGuiWindow_Rect" defs["ImGuiWindow_Rect"][1]["defaults"] = {} defs["ImGuiWindow_Rect"][1]["funcname"] = "Rect" -defs["ImGuiWindow_Rect"][1]["location"] = "internal" +defs["ImGuiWindow_Rect"][1]["location"] = "imgui_internal:1663" defs["ImGuiWindow_Rect"][1]["nonUDT"] = 1 defs["ImGuiWindow_Rect"][1]["ov_cimguiname"] = "ImGuiWindow_Rect" defs["ImGuiWindow_Rect"][1]["ret"] = "void" @@ -6551,7 +6563,7 @@ defs["ImGuiWindow_TitleBarHeight"][1]["call_args"] = "()" defs["ImGuiWindow_TitleBarHeight"][1]["cimguiname"] = "ImGuiWindow_TitleBarHeight" defs["ImGuiWindow_TitleBarHeight"][1]["defaults"] = {} defs["ImGuiWindow_TitleBarHeight"][1]["funcname"] = "TitleBarHeight" -defs["ImGuiWindow_TitleBarHeight"][1]["location"] = "internal" +defs["ImGuiWindow_TitleBarHeight"][1]["location"] = "imgui_internal:1665" defs["ImGuiWindow_TitleBarHeight"][1]["ov_cimguiname"] = "ImGuiWindow_TitleBarHeight" defs["ImGuiWindow_TitleBarHeight"][1]["ret"] = "float" defs["ImGuiWindow_TitleBarHeight"][1]["signature"] = "()const" @@ -6572,7 +6584,7 @@ defs["ImGuiWindow_TitleBarRect"][1]["call_args"] = "()" defs["ImGuiWindow_TitleBarRect"][1]["cimguiname"] = "ImGuiWindow_TitleBarRect" defs["ImGuiWindow_TitleBarRect"][1]["defaults"] = {} defs["ImGuiWindow_TitleBarRect"][1]["funcname"] = "TitleBarRect" -defs["ImGuiWindow_TitleBarRect"][1]["location"] = "internal" +defs["ImGuiWindow_TitleBarRect"][1]["location"] = "imgui_internal:1666" defs["ImGuiWindow_TitleBarRect"][1]["nonUDT"] = 1 defs["ImGuiWindow_TitleBarRect"][1]["ov_cimguiname"] = "ImGuiWindow_TitleBarRect" defs["ImGuiWindow_TitleBarRect"][1]["ret"] = "void" @@ -6590,7 +6602,9 @@ defs["ImGuiWindow_destroy"][1]["call_args"] = "(self)" defs["ImGuiWindow_destroy"][1]["cimguiname"] = "ImGuiWindow_destroy" defs["ImGuiWindow_destroy"][1]["defaults"] = {} defs["ImGuiWindow_destroy"][1]["destructor"] = true +defs["ImGuiWindow_destroy"][1]["location"] = "imgui_internal:1652" defs["ImGuiWindow_destroy"][1]["ov_cimguiname"] = "ImGuiWindow_destroy" +defs["ImGuiWindow_destroy"][1]["realdestructor"] = true defs["ImGuiWindow_destroy"][1]["ret"] = "void" defs["ImGuiWindow_destroy"][1]["signature"] = "(ImGuiWindow*)" defs["ImGuiWindow_destroy"][1]["stname"] = "ImGuiWindow" @@ -6607,7 +6621,7 @@ defs["ImPool_Add"][1]["call_args"] = "()" defs["ImPool_Add"][1]["cimguiname"] = "ImPool_Add" defs["ImPool_Add"][1]["defaults"] = {} defs["ImPool_Add"][1]["funcname"] = "Add" -defs["ImPool_Add"][1]["location"] = "internal" +defs["ImPool_Add"][1]["location"] = "imgui_internal:497" defs["ImPool_Add"][1]["ov_cimguiname"] = "ImPool_Add" defs["ImPool_Add"][1]["ret"] = "T*" defs["ImPool_Add"][1]["signature"] = "()" @@ -6626,7 +6640,7 @@ defs["ImPool_Clear"][1]["call_args"] = "()" defs["ImPool_Clear"][1]["cimguiname"] = "ImPool_Clear" defs["ImPool_Clear"][1]["defaults"] = {} defs["ImPool_Clear"][1]["funcname"] = "Clear" -defs["ImPool_Clear"][1]["location"] = "internal" +defs["ImPool_Clear"][1]["location"] = "imgui_internal:496" defs["ImPool_Clear"][1]["ov_cimguiname"] = "ImPool_Clear" defs["ImPool_Clear"][1]["ret"] = "void" defs["ImPool_Clear"][1]["signature"] = "()" @@ -6648,7 +6662,7 @@ defs["ImPool_Contains"][1]["call_args"] = "(p)" defs["ImPool_Contains"][1]["cimguiname"] = "ImPool_Contains" defs["ImPool_Contains"][1]["defaults"] = {} defs["ImPool_Contains"][1]["funcname"] = "Contains" -defs["ImPool_Contains"][1]["location"] = "internal" +defs["ImPool_Contains"][1]["location"] = "imgui_internal:495" defs["ImPool_Contains"][1]["ov_cimguiname"] = "ImPool_Contains" defs["ImPool_Contains"][1]["ret"] = "bool" defs["ImPool_Contains"][1]["signature"] = "(const T*)const" @@ -6670,7 +6684,7 @@ defs["ImPool_GetByIndex"][1]["call_args"] = "(n)" defs["ImPool_GetByIndex"][1]["cimguiname"] = "ImPool_GetByIndex" defs["ImPool_GetByIndex"][1]["defaults"] = {} defs["ImPool_GetByIndex"][1]["funcname"] = "GetByIndex" -defs["ImPool_GetByIndex"][1]["location"] = "internal" +defs["ImPool_GetByIndex"][1]["location"] = "imgui_internal:492" defs["ImPool_GetByIndex"][1]["ov_cimguiname"] = "ImPool_GetByIndex" defs["ImPool_GetByIndex"][1]["ret"] = "T*" defs["ImPool_GetByIndex"][1]["signature"] = "(ImPoolIdx)" @@ -6692,7 +6706,7 @@ defs["ImPool_GetByKey"][1]["call_args"] = "(key)" defs["ImPool_GetByKey"][1]["cimguiname"] = "ImPool_GetByKey" defs["ImPool_GetByKey"][1]["defaults"] = {} defs["ImPool_GetByKey"][1]["funcname"] = "GetByKey" -defs["ImPool_GetByKey"][1]["location"] = "internal" +defs["ImPool_GetByKey"][1]["location"] = "imgui_internal:491" defs["ImPool_GetByKey"][1]["ov_cimguiname"] = "ImPool_GetByKey" defs["ImPool_GetByKey"][1]["ret"] = "T*" defs["ImPool_GetByKey"][1]["signature"] = "(ImGuiID)" @@ -6714,7 +6728,7 @@ defs["ImPool_GetIndex"][1]["call_args"] = "(p)" defs["ImPool_GetIndex"][1]["cimguiname"] = "ImPool_GetIndex" defs["ImPool_GetIndex"][1]["defaults"] = {} defs["ImPool_GetIndex"][1]["funcname"] = "GetIndex" -defs["ImPool_GetIndex"][1]["location"] = "internal" +defs["ImPool_GetIndex"][1]["location"] = "imgui_internal:493" defs["ImPool_GetIndex"][1]["ov_cimguiname"] = "ImPool_GetIndex" defs["ImPool_GetIndex"][1]["ret"] = "ImPoolIdx" defs["ImPool_GetIndex"][1]["signature"] = "(const T*)const" @@ -6736,7 +6750,7 @@ defs["ImPool_GetOrAddByKey"][1]["call_args"] = "(key)" defs["ImPool_GetOrAddByKey"][1]["cimguiname"] = "ImPool_GetOrAddByKey" defs["ImPool_GetOrAddByKey"][1]["defaults"] = {} defs["ImPool_GetOrAddByKey"][1]["funcname"] = "GetOrAddByKey" -defs["ImPool_GetOrAddByKey"][1]["location"] = "internal" +defs["ImPool_GetOrAddByKey"][1]["location"] = "imgui_internal:494" defs["ImPool_GetOrAddByKey"][1]["ov_cimguiname"] = "ImPool_GetOrAddByKey" defs["ImPool_GetOrAddByKey"][1]["ret"] = "T*" defs["ImPool_GetOrAddByKey"][1]["signature"] = "(ImGuiID)" @@ -6755,7 +6769,7 @@ defs["ImPool_GetSize"][1]["call_args"] = "()" defs["ImPool_GetSize"][1]["cimguiname"] = "ImPool_GetSize" defs["ImPool_GetSize"][1]["defaults"] = {} defs["ImPool_GetSize"][1]["funcname"] = "GetSize" -defs["ImPool_GetSize"][1]["location"] = "internal" +defs["ImPool_GetSize"][1]["location"] = "imgui_internal:501" defs["ImPool_GetSize"][1]["ov_cimguiname"] = "ImPool_GetSize" defs["ImPool_GetSize"][1]["ret"] = "int" defs["ImPool_GetSize"][1]["signature"] = "()const" @@ -6772,7 +6786,7 @@ defs["ImPool_ImPool"][1]["cimguiname"] = "ImPool_ImPool" defs["ImPool_ImPool"][1]["constructor"] = true defs["ImPool_ImPool"][1]["defaults"] = {} defs["ImPool_ImPool"][1]["funcname"] = "ImPool" -defs["ImPool_ImPool"][1]["location"] = "internal" +defs["ImPool_ImPool"][1]["location"] = "imgui_internal:489" defs["ImPool_ImPool"][1]["ov_cimguiname"] = "ImPool_ImPool" defs["ImPool_ImPool"][1]["signature"] = "()" defs["ImPool_ImPool"][1]["stname"] = "ImPool" @@ -6796,7 +6810,7 @@ defs["ImPool_Remove"][1]["call_args"] = "(key,p)" defs["ImPool_Remove"][1]["cimguiname"] = "ImPool_Remove" defs["ImPool_Remove"][1]["defaults"] = {} defs["ImPool_Remove"][1]["funcname"] = "Remove" -defs["ImPool_Remove"][1]["location"] = "internal" +defs["ImPool_Remove"][1]["location"] = "imgui_internal:498" defs["ImPool_Remove"][1]["ov_cimguiname"] = "ImPool_RemoveTPtr" defs["ImPool_Remove"][1]["ret"] = "void" defs["ImPool_Remove"][1]["signature"] = "(ImGuiID,const T*)" @@ -6819,7 +6833,7 @@ defs["ImPool_Remove"][2]["call_args"] = "(key,idx)" defs["ImPool_Remove"][2]["cimguiname"] = "ImPool_Remove" defs["ImPool_Remove"][2]["defaults"] = {} defs["ImPool_Remove"][2]["funcname"] = "Remove" -defs["ImPool_Remove"][2]["location"] = "internal" +defs["ImPool_Remove"][2]["location"] = "imgui_internal:499" defs["ImPool_Remove"][2]["ov_cimguiname"] = "ImPool_RemovePoolIdx" defs["ImPool_Remove"][2]["ret"] = "void" defs["ImPool_Remove"][2]["signature"] = "(ImGuiID,ImPoolIdx)" @@ -6842,7 +6856,7 @@ defs["ImPool_Reserve"][1]["call_args"] = "(capacity)" defs["ImPool_Reserve"][1]["cimguiname"] = "ImPool_Reserve" defs["ImPool_Reserve"][1]["defaults"] = {} defs["ImPool_Reserve"][1]["funcname"] = "Reserve" -defs["ImPool_Reserve"][1]["location"] = "internal" +defs["ImPool_Reserve"][1]["location"] = "imgui_internal:500" defs["ImPool_Reserve"][1]["ov_cimguiname"] = "ImPool_Reserve" defs["ImPool_Reserve"][1]["ret"] = "void" defs["ImPool_Reserve"][1]["signature"] = "(int)" @@ -6860,7 +6874,9 @@ defs["ImPool_destroy"][1]["call_args"] = "(self)" defs["ImPool_destroy"][1]["cimguiname"] = "ImPool_destroy" defs["ImPool_destroy"][1]["defaults"] = {} defs["ImPool_destroy"][1]["destructor"] = true +defs["ImPool_destroy"][1]["location"] = "imgui_internal:490" defs["ImPool_destroy"][1]["ov_cimguiname"] = "ImPool_destroy" +defs["ImPool_destroy"][1]["realdestructor"] = true defs["ImPool_destroy"][1]["ret"] = "void" defs["ImPool_destroy"][1]["signature"] = "(ImPool*)" defs["ImPool_destroy"][1]["stname"] = "ImPool" @@ -6881,7 +6897,7 @@ defs["ImRect_Add"][1]["call_args"] = "(p)" defs["ImRect_Add"][1]["cimguiname"] = "ImRect_Add" defs["ImRect_Add"][1]["defaults"] = {} defs["ImRect_Add"][1]["funcname"] = "Add" -defs["ImRect_Add"][1]["location"] = "internal" +defs["ImRect_Add"][1]["location"] = "imgui_internal:436" defs["ImRect_Add"][1]["ov_cimguiname"] = "ImRect_AddVec2" defs["ImRect_Add"][1]["ret"] = "void" defs["ImRect_Add"][1]["signature"] = "(const ImVec2)" @@ -6900,7 +6916,7 @@ defs["ImRect_Add"][2]["call_args"] = "(r)" defs["ImRect_Add"][2]["cimguiname"] = "ImRect_Add" defs["ImRect_Add"][2]["defaults"] = {} defs["ImRect_Add"][2]["funcname"] = "Add" -defs["ImRect_Add"][2]["location"] = "internal" +defs["ImRect_Add"][2]["location"] = "imgui_internal:437" defs["ImRect_Add"][2]["ov_cimguiname"] = "ImRect_AddRect" defs["ImRect_Add"][2]["ret"] = "void" defs["ImRect_Add"][2]["signature"] = "(const ImRect)" @@ -6922,7 +6938,7 @@ defs["ImRect_ClipWith"][1]["call_args"] = "(r)" defs["ImRect_ClipWith"][1]["cimguiname"] = "ImRect_ClipWith" defs["ImRect_ClipWith"][1]["defaults"] = {} defs["ImRect_ClipWith"][1]["funcname"] = "ClipWith" -defs["ImRect_ClipWith"][1]["location"] = "internal" +defs["ImRect_ClipWith"][1]["location"] = "imgui_internal:443" defs["ImRect_ClipWith"][1]["ov_cimguiname"] = "ImRect_ClipWith" defs["ImRect_ClipWith"][1]["ret"] = "void" defs["ImRect_ClipWith"][1]["signature"] = "(const ImRect)" @@ -6943,7 +6959,7 @@ defs["ImRect_ClipWithFull"][1]["call_args"] = "(r)" defs["ImRect_ClipWithFull"][1]["cimguiname"] = "ImRect_ClipWithFull" defs["ImRect_ClipWithFull"][1]["defaults"] = {} defs["ImRect_ClipWithFull"][1]["funcname"] = "ClipWithFull" -defs["ImRect_ClipWithFull"][1]["location"] = "internal" +defs["ImRect_ClipWithFull"][1]["location"] = "imgui_internal:444" defs["ImRect_ClipWithFull"][1]["ov_cimguiname"] = "ImRect_ClipWithFull" defs["ImRect_ClipWithFull"][1]["ret"] = "void" defs["ImRect_ClipWithFull"][1]["signature"] = "(const ImRect)" @@ -6964,7 +6980,7 @@ defs["ImRect_Contains"][1]["call_args"] = "(p)" defs["ImRect_Contains"][1]["cimguiname"] = "ImRect_Contains" defs["ImRect_Contains"][1]["defaults"] = {} defs["ImRect_Contains"][1]["funcname"] = "Contains" -defs["ImRect_Contains"][1]["location"] = "internal" +defs["ImRect_Contains"][1]["location"] = "imgui_internal:433" defs["ImRect_Contains"][1]["ov_cimguiname"] = "ImRect_ContainsVec2" defs["ImRect_Contains"][1]["ret"] = "bool" defs["ImRect_Contains"][1]["signature"] = "(const ImVec2)const" @@ -6983,7 +6999,7 @@ defs["ImRect_Contains"][2]["call_args"] = "(r)" defs["ImRect_Contains"][2]["cimguiname"] = "ImRect_Contains" defs["ImRect_Contains"][2]["defaults"] = {} defs["ImRect_Contains"][2]["funcname"] = "Contains" -defs["ImRect_Contains"][2]["location"] = "internal" +defs["ImRect_Contains"][2]["location"] = "imgui_internal:434" defs["ImRect_Contains"][2]["ov_cimguiname"] = "ImRect_ContainsRect" defs["ImRect_Contains"][2]["ret"] = "bool" defs["ImRect_Contains"][2]["signature"] = "(const ImRect)const" @@ -7005,7 +7021,7 @@ defs["ImRect_Expand"][1]["call_args"] = "(amount)" defs["ImRect_Expand"][1]["cimguiname"] = "ImRect_Expand" defs["ImRect_Expand"][1]["defaults"] = {} defs["ImRect_Expand"][1]["funcname"] = "Expand" -defs["ImRect_Expand"][1]["location"] = "internal" +defs["ImRect_Expand"][1]["location"] = "imgui_internal:438" defs["ImRect_Expand"][1]["ov_cimguiname"] = "ImRect_ExpandFloat" defs["ImRect_Expand"][1]["ret"] = "void" defs["ImRect_Expand"][1]["signature"] = "(const float)" @@ -7024,7 +7040,7 @@ defs["ImRect_Expand"][2]["call_args"] = "(amount)" defs["ImRect_Expand"][2]["cimguiname"] = "ImRect_Expand" defs["ImRect_Expand"][2]["defaults"] = {} defs["ImRect_Expand"][2]["funcname"] = "Expand" -defs["ImRect_Expand"][2]["location"] = "internal" +defs["ImRect_Expand"][2]["location"] = "imgui_internal:439" defs["ImRect_Expand"][2]["ov_cimguiname"] = "ImRect_ExpandVec2" defs["ImRect_Expand"][2]["ret"] = "void" defs["ImRect_Expand"][2]["signature"] = "(const ImVec2)" @@ -7043,7 +7059,7 @@ defs["ImRect_Floor"][1]["call_args"] = "()" defs["ImRect_Floor"][1]["cimguiname"] = "ImRect_Floor" defs["ImRect_Floor"][1]["defaults"] = {} defs["ImRect_Floor"][1]["funcname"] = "Floor" -defs["ImRect_Floor"][1]["location"] = "internal" +defs["ImRect_Floor"][1]["location"] = "imgui_internal:445" defs["ImRect_Floor"][1]["ov_cimguiname"] = "ImRect_Floor" defs["ImRect_Floor"][1]["ret"] = "void" defs["ImRect_Floor"][1]["signature"] = "()" @@ -7064,7 +7080,7 @@ defs["ImRect_GetBL"][1]["call_args"] = "()" defs["ImRect_GetBL"][1]["cimguiname"] = "ImRect_GetBL" defs["ImRect_GetBL"][1]["defaults"] = {} defs["ImRect_GetBL"][1]["funcname"] = "GetBL" -defs["ImRect_GetBL"][1]["location"] = "internal" +defs["ImRect_GetBL"][1]["location"] = "imgui_internal:431" defs["ImRect_GetBL"][1]["nonUDT"] = 1 defs["ImRect_GetBL"][1]["ov_cimguiname"] = "ImRect_GetBL" defs["ImRect_GetBL"][1]["ret"] = "void" @@ -7086,7 +7102,7 @@ defs["ImRect_GetBR"][1]["call_args"] = "()" defs["ImRect_GetBR"][1]["cimguiname"] = "ImRect_GetBR" defs["ImRect_GetBR"][1]["defaults"] = {} defs["ImRect_GetBR"][1]["funcname"] = "GetBR" -defs["ImRect_GetBR"][1]["location"] = "internal" +defs["ImRect_GetBR"][1]["location"] = "imgui_internal:432" defs["ImRect_GetBR"][1]["nonUDT"] = 1 defs["ImRect_GetBR"][1]["ov_cimguiname"] = "ImRect_GetBR" defs["ImRect_GetBR"][1]["ret"] = "void" @@ -7108,7 +7124,7 @@ defs["ImRect_GetCenter"][1]["call_args"] = "()" defs["ImRect_GetCenter"][1]["cimguiname"] = "ImRect_GetCenter" defs["ImRect_GetCenter"][1]["defaults"] = {} defs["ImRect_GetCenter"][1]["funcname"] = "GetCenter" -defs["ImRect_GetCenter"][1]["location"] = "internal" +defs["ImRect_GetCenter"][1]["location"] = "imgui_internal:425" defs["ImRect_GetCenter"][1]["nonUDT"] = 1 defs["ImRect_GetCenter"][1]["ov_cimguiname"] = "ImRect_GetCenter" defs["ImRect_GetCenter"][1]["ret"] = "void" @@ -7127,7 +7143,7 @@ defs["ImRect_GetHeight"][1]["call_args"] = "()" defs["ImRect_GetHeight"][1]["cimguiname"] = "ImRect_GetHeight" defs["ImRect_GetHeight"][1]["defaults"] = {} defs["ImRect_GetHeight"][1]["funcname"] = "GetHeight" -defs["ImRect_GetHeight"][1]["location"] = "internal" +defs["ImRect_GetHeight"][1]["location"] = "imgui_internal:428" defs["ImRect_GetHeight"][1]["ov_cimguiname"] = "ImRect_GetHeight" defs["ImRect_GetHeight"][1]["ret"] = "float" defs["ImRect_GetHeight"][1]["signature"] = "()const" @@ -7148,7 +7164,7 @@ defs["ImRect_GetSize"][1]["call_args"] = "()" defs["ImRect_GetSize"][1]["cimguiname"] = "ImRect_GetSize" defs["ImRect_GetSize"][1]["defaults"] = {} defs["ImRect_GetSize"][1]["funcname"] = "GetSize" -defs["ImRect_GetSize"][1]["location"] = "internal" +defs["ImRect_GetSize"][1]["location"] = "imgui_internal:426" defs["ImRect_GetSize"][1]["nonUDT"] = 1 defs["ImRect_GetSize"][1]["ov_cimguiname"] = "ImRect_GetSize" defs["ImRect_GetSize"][1]["ret"] = "void" @@ -7170,7 +7186,7 @@ defs["ImRect_GetTL"][1]["call_args"] = "()" defs["ImRect_GetTL"][1]["cimguiname"] = "ImRect_GetTL" defs["ImRect_GetTL"][1]["defaults"] = {} defs["ImRect_GetTL"][1]["funcname"] = "GetTL" -defs["ImRect_GetTL"][1]["location"] = "internal" +defs["ImRect_GetTL"][1]["location"] = "imgui_internal:429" defs["ImRect_GetTL"][1]["nonUDT"] = 1 defs["ImRect_GetTL"][1]["ov_cimguiname"] = "ImRect_GetTL" defs["ImRect_GetTL"][1]["ret"] = "void" @@ -7192,7 +7208,7 @@ defs["ImRect_GetTR"][1]["call_args"] = "()" defs["ImRect_GetTR"][1]["cimguiname"] = "ImRect_GetTR" defs["ImRect_GetTR"][1]["defaults"] = {} defs["ImRect_GetTR"][1]["funcname"] = "GetTR" -defs["ImRect_GetTR"][1]["location"] = "internal" +defs["ImRect_GetTR"][1]["location"] = "imgui_internal:430" defs["ImRect_GetTR"][1]["nonUDT"] = 1 defs["ImRect_GetTR"][1]["ov_cimguiname"] = "ImRect_GetTR" defs["ImRect_GetTR"][1]["ret"] = "void" @@ -7211,7 +7227,7 @@ defs["ImRect_GetWidth"][1]["call_args"] = "()" defs["ImRect_GetWidth"][1]["cimguiname"] = "ImRect_GetWidth" defs["ImRect_GetWidth"][1]["defaults"] = {} defs["ImRect_GetWidth"][1]["funcname"] = "GetWidth" -defs["ImRect_GetWidth"][1]["location"] = "internal" +defs["ImRect_GetWidth"][1]["location"] = "imgui_internal:427" defs["ImRect_GetWidth"][1]["ov_cimguiname"] = "ImRect_GetWidth" defs["ImRect_GetWidth"][1]["ret"] = "float" defs["ImRect_GetWidth"][1]["signature"] = "()const" @@ -7227,7 +7243,7 @@ defs["ImRect_ImRect"][1]["cimguiname"] = "ImRect_ImRect" defs["ImRect_ImRect"][1]["constructor"] = true defs["ImRect_ImRect"][1]["defaults"] = {} defs["ImRect_ImRect"][1]["funcname"] = "ImRect" -defs["ImRect_ImRect"][1]["location"] = "internal" +defs["ImRect_ImRect"][1]["location"] = "imgui_internal:420" defs["ImRect_ImRect"][1]["ov_cimguiname"] = "ImRect_ImRectNil" defs["ImRect_ImRect"][1]["signature"] = "()" defs["ImRect_ImRect"][1]["stname"] = "ImRect" @@ -7246,7 +7262,7 @@ defs["ImRect_ImRect"][2]["cimguiname"] = "ImRect_ImRect" defs["ImRect_ImRect"][2]["constructor"] = true defs["ImRect_ImRect"][2]["defaults"] = {} defs["ImRect_ImRect"][2]["funcname"] = "ImRect" -defs["ImRect_ImRect"][2]["location"] = "internal" +defs["ImRect_ImRect"][2]["location"] = "imgui_internal:421" defs["ImRect_ImRect"][2]["ov_cimguiname"] = "ImRect_ImRectVec2" defs["ImRect_ImRect"][2]["signature"] = "(const ImVec2,const ImVec2)" defs["ImRect_ImRect"][2]["stname"] = "ImRect" @@ -7262,7 +7278,7 @@ defs["ImRect_ImRect"][3]["cimguiname"] = "ImRect_ImRect" defs["ImRect_ImRect"][3]["constructor"] = true defs["ImRect_ImRect"][3]["defaults"] = {} defs["ImRect_ImRect"][3]["funcname"] = "ImRect" -defs["ImRect_ImRect"][3]["location"] = "internal" +defs["ImRect_ImRect"][3]["location"] = "imgui_internal:422" defs["ImRect_ImRect"][3]["ov_cimguiname"] = "ImRect_ImRectVec4" defs["ImRect_ImRect"][3]["signature"] = "(const ImVec4)" defs["ImRect_ImRect"][3]["stname"] = "ImRect" @@ -7287,7 +7303,7 @@ defs["ImRect_ImRect"][4]["cimguiname"] = "ImRect_ImRect" defs["ImRect_ImRect"][4]["constructor"] = true defs["ImRect_ImRect"][4]["defaults"] = {} defs["ImRect_ImRect"][4]["funcname"] = "ImRect" -defs["ImRect_ImRect"][4]["location"] = "internal" +defs["ImRect_ImRect"][4]["location"] = "imgui_internal:423" defs["ImRect_ImRect"][4]["ov_cimguiname"] = "ImRect_ImRectFloat" defs["ImRect_ImRect"][4]["signature"] = "(float,float,float,float)" defs["ImRect_ImRect"][4]["stname"] = "ImRect" @@ -7307,7 +7323,7 @@ defs["ImRect_IsInverted"][1]["call_args"] = "()" defs["ImRect_IsInverted"][1]["cimguiname"] = "ImRect_IsInverted" defs["ImRect_IsInverted"][1]["defaults"] = {} defs["ImRect_IsInverted"][1]["funcname"] = "IsInverted" -defs["ImRect_IsInverted"][1]["location"] = "internal" +defs["ImRect_IsInverted"][1]["location"] = "imgui_internal:446" defs["ImRect_IsInverted"][1]["ov_cimguiname"] = "ImRect_IsInverted" defs["ImRect_IsInverted"][1]["ret"] = "bool" defs["ImRect_IsInverted"][1]["signature"] = "()const" @@ -7328,7 +7344,7 @@ defs["ImRect_Overlaps"][1]["call_args"] = "(r)" defs["ImRect_Overlaps"][1]["cimguiname"] = "ImRect_Overlaps" defs["ImRect_Overlaps"][1]["defaults"] = {} defs["ImRect_Overlaps"][1]["funcname"] = "Overlaps" -defs["ImRect_Overlaps"][1]["location"] = "internal" +defs["ImRect_Overlaps"][1]["location"] = "imgui_internal:435" defs["ImRect_Overlaps"][1]["ov_cimguiname"] = "ImRect_Overlaps" defs["ImRect_Overlaps"][1]["ret"] = "bool" defs["ImRect_Overlaps"][1]["signature"] = "(const ImRect)const" @@ -7349,7 +7365,7 @@ defs["ImRect_ToVec4"][1]["call_args"] = "()" defs["ImRect_ToVec4"][1]["cimguiname"] = "ImRect_ToVec4" defs["ImRect_ToVec4"][1]["defaults"] = {} defs["ImRect_ToVec4"][1]["funcname"] = "ToVec4" -defs["ImRect_ToVec4"][1]["location"] = "internal" +defs["ImRect_ToVec4"][1]["location"] = "imgui_internal:447" defs["ImRect_ToVec4"][1]["nonUDT"] = 1 defs["ImRect_ToVec4"][1]["ov_cimguiname"] = "ImRect_ToVec4" defs["ImRect_ToVec4"][1]["ret"] = "void" @@ -7371,7 +7387,7 @@ defs["ImRect_Translate"][1]["call_args"] = "(d)" defs["ImRect_Translate"][1]["cimguiname"] = "ImRect_Translate" defs["ImRect_Translate"][1]["defaults"] = {} defs["ImRect_Translate"][1]["funcname"] = "Translate" -defs["ImRect_Translate"][1]["location"] = "internal" +defs["ImRect_Translate"][1]["location"] = "imgui_internal:440" defs["ImRect_Translate"][1]["ov_cimguiname"] = "ImRect_Translate" defs["ImRect_Translate"][1]["ret"] = "void" defs["ImRect_Translate"][1]["signature"] = "(const ImVec2)" @@ -7392,7 +7408,7 @@ defs["ImRect_TranslateX"][1]["call_args"] = "(dx)" defs["ImRect_TranslateX"][1]["cimguiname"] = "ImRect_TranslateX" defs["ImRect_TranslateX"][1]["defaults"] = {} defs["ImRect_TranslateX"][1]["funcname"] = "TranslateX" -defs["ImRect_TranslateX"][1]["location"] = "internal" +defs["ImRect_TranslateX"][1]["location"] = "imgui_internal:441" defs["ImRect_TranslateX"][1]["ov_cimguiname"] = "ImRect_TranslateX" defs["ImRect_TranslateX"][1]["ret"] = "void" defs["ImRect_TranslateX"][1]["signature"] = "(float)" @@ -7413,7 +7429,7 @@ defs["ImRect_TranslateY"][1]["call_args"] = "(dy)" defs["ImRect_TranslateY"][1]["cimguiname"] = "ImRect_TranslateY" defs["ImRect_TranslateY"][1]["defaults"] = {} defs["ImRect_TranslateY"][1]["funcname"] = "TranslateY" -defs["ImRect_TranslateY"][1]["location"] = "internal" +defs["ImRect_TranslateY"][1]["location"] = "imgui_internal:442" defs["ImRect_TranslateY"][1]["ov_cimguiname"] = "ImRect_TranslateY" defs["ImRect_TranslateY"][1]["ret"] = "void" defs["ImRect_TranslateY"][1]["signature"] = "(float)" @@ -7445,7 +7461,7 @@ defs["ImVec1_ImVec1"][1]["cimguiname"] = "ImVec1_ImVec1" defs["ImVec1_ImVec1"][1]["constructor"] = true defs["ImVec1_ImVec1"][1]["defaults"] = {} defs["ImVec1_ImVec1"][1]["funcname"] = "ImVec1" -defs["ImVec1_ImVec1"][1]["location"] = "internal" +defs["ImVec1_ImVec1"][1]["location"] = "imgui_internal:400" defs["ImVec1_ImVec1"][1]["ov_cimguiname"] = "ImVec1_ImVec1Nil" defs["ImVec1_ImVec1"][1]["signature"] = "()" defs["ImVec1_ImVec1"][1]["stname"] = "ImVec1" @@ -7461,7 +7477,7 @@ defs["ImVec1_ImVec1"][2]["cimguiname"] = "ImVec1_ImVec1" defs["ImVec1_ImVec1"][2]["constructor"] = true defs["ImVec1_ImVec1"][2]["defaults"] = {} defs["ImVec1_ImVec1"][2]["funcname"] = "ImVec1" -defs["ImVec1_ImVec1"][2]["location"] = "internal" +defs["ImVec1_ImVec1"][2]["location"] = "imgui_internal:401" defs["ImVec1_ImVec1"][2]["ov_cimguiname"] = "ImVec1_ImVec1Float" defs["ImVec1_ImVec1"][2]["signature"] = "(float)" defs["ImVec1_ImVec1"][2]["stname"] = "ImVec1" @@ -7493,7 +7509,7 @@ defs["ImVec2_ImVec2"][1]["cimguiname"] = "ImVec2_ImVec2" defs["ImVec2_ImVec2"][1]["constructor"] = true defs["ImVec2_ImVec2"][1]["defaults"] = {} defs["ImVec2_ImVec2"][1]["funcname"] = "ImVec2" -defs["ImVec2_ImVec2"][1]["location"] = "imgui" +defs["ImVec2_ImVec2"][1]["location"] = "imgui:214" defs["ImVec2_ImVec2"][1]["ov_cimguiname"] = "ImVec2_ImVec2Nil" defs["ImVec2_ImVec2"][1]["signature"] = "()" defs["ImVec2_ImVec2"][1]["stname"] = "ImVec2" @@ -7512,7 +7528,7 @@ defs["ImVec2_ImVec2"][2]["cimguiname"] = "ImVec2_ImVec2" defs["ImVec2_ImVec2"][2]["constructor"] = true defs["ImVec2_ImVec2"][2]["defaults"] = {} defs["ImVec2_ImVec2"][2]["funcname"] = "ImVec2" -defs["ImVec2_ImVec2"][2]["location"] = "imgui" +defs["ImVec2_ImVec2"][2]["location"] = "imgui:215" defs["ImVec2_ImVec2"][2]["ov_cimguiname"] = "ImVec2_ImVec2Float" defs["ImVec2_ImVec2"][2]["signature"] = "(float,float)" defs["ImVec2_ImVec2"][2]["stname"] = "ImVec2" @@ -7544,7 +7560,7 @@ defs["ImVec2ih_ImVec2ih"][1]["cimguiname"] = "ImVec2ih_ImVec2ih" defs["ImVec2ih_ImVec2ih"][1]["constructor"] = true defs["ImVec2ih_ImVec2ih"][1]["defaults"] = {} defs["ImVec2ih_ImVec2ih"][1]["funcname"] = "ImVec2ih" -defs["ImVec2ih_ImVec2ih"][1]["location"] = "internal" +defs["ImVec2ih_ImVec2ih"][1]["location"] = "imgui_internal:408" defs["ImVec2ih_ImVec2ih"][1]["ov_cimguiname"] = "ImVec2ih_ImVec2ihNil" defs["ImVec2ih_ImVec2ih"][1]["signature"] = "()" defs["ImVec2ih_ImVec2ih"][1]["stname"] = "ImVec2ih" @@ -7563,7 +7579,7 @@ defs["ImVec2ih_ImVec2ih"][2]["cimguiname"] = "ImVec2ih_ImVec2ih" defs["ImVec2ih_ImVec2ih"][2]["constructor"] = true defs["ImVec2ih_ImVec2ih"][2]["defaults"] = {} defs["ImVec2ih_ImVec2ih"][2]["funcname"] = "ImVec2ih" -defs["ImVec2ih_ImVec2ih"][2]["location"] = "internal" +defs["ImVec2ih_ImVec2ih"][2]["location"] = "imgui_internal:409" defs["ImVec2ih_ImVec2ih"][2]["ov_cimguiname"] = "ImVec2ih_ImVec2ihshort" defs["ImVec2ih_ImVec2ih"][2]["signature"] = "(short,short)" defs["ImVec2ih_ImVec2ih"][2]["stname"] = "ImVec2ih" @@ -7579,7 +7595,7 @@ defs["ImVec2ih_ImVec2ih"][3]["cimguiname"] = "ImVec2ih_ImVec2ih" defs["ImVec2ih_ImVec2ih"][3]["constructor"] = true defs["ImVec2ih_ImVec2ih"][3]["defaults"] = {} defs["ImVec2ih_ImVec2ih"][3]["funcname"] = "ImVec2ih" -defs["ImVec2ih_ImVec2ih"][3]["location"] = "internal" +defs["ImVec2ih_ImVec2ih"][3]["location"] = "imgui_internal:410" defs["ImVec2ih_ImVec2ih"][3]["ov_cimguiname"] = "ImVec2ih_ImVec2ihVec2" defs["ImVec2ih_ImVec2ih"][3]["signature"] = "(const ImVec2)" defs["ImVec2ih_ImVec2ih"][3]["stname"] = "ImVec2ih" @@ -7612,7 +7628,7 @@ defs["ImVec4_ImVec4"][1]["cimguiname"] = "ImVec4_ImVec4" defs["ImVec4_ImVec4"][1]["constructor"] = true defs["ImVec4_ImVec4"][1]["defaults"] = {} defs["ImVec4_ImVec4"][1]["funcname"] = "ImVec4" -defs["ImVec4_ImVec4"][1]["location"] = "imgui" +defs["ImVec4_ImVec4"][1]["location"] = "imgui:227" defs["ImVec4_ImVec4"][1]["ov_cimguiname"] = "ImVec4_ImVec4Nil" defs["ImVec4_ImVec4"][1]["signature"] = "()" defs["ImVec4_ImVec4"][1]["stname"] = "ImVec4" @@ -7637,7 +7653,7 @@ defs["ImVec4_ImVec4"][2]["cimguiname"] = "ImVec4_ImVec4" defs["ImVec4_ImVec4"][2]["constructor"] = true defs["ImVec4_ImVec4"][2]["defaults"] = {} defs["ImVec4_ImVec4"][2]["funcname"] = "ImVec4" -defs["ImVec4_ImVec4"][2]["location"] = "imgui" +defs["ImVec4_ImVec4"][2]["location"] = "imgui:228" defs["ImVec4_ImVec4"][2]["ov_cimguiname"] = "ImVec4_ImVec4Float" defs["ImVec4_ImVec4"][2]["signature"] = "(float,float,float,float)" defs["ImVec4_ImVec4"][2]["stname"] = "ImVec4" @@ -7669,7 +7685,7 @@ defs["ImVector_ImVector"][1]["cimguiname"] = "ImVector_ImVector" defs["ImVector_ImVector"][1]["constructor"] = true defs["ImVector_ImVector"][1]["defaults"] = {} defs["ImVector_ImVector"][1]["funcname"] = "ImVector" -defs["ImVector_ImVector"][1]["location"] = "imgui" +defs["ImVector_ImVector"][1]["location"] = "imgui:1389" defs["ImVector_ImVector"][1]["ov_cimguiname"] = "ImVector_ImVectorNil" defs["ImVector_ImVector"][1]["signature"] = "()" defs["ImVector_ImVector"][1]["stname"] = "ImVector" @@ -7686,7 +7702,7 @@ defs["ImVector_ImVector"][2]["cimguiname"] = "ImVector_ImVector" defs["ImVector_ImVector"][2]["constructor"] = true defs["ImVector_ImVector"][2]["defaults"] = {} defs["ImVector_ImVector"][2]["funcname"] = "ImVector" -defs["ImVector_ImVector"][2]["location"] = "imgui" +defs["ImVector_ImVector"][2]["location"] = "imgui:1390" defs["ImVector_ImVector"][2]["ov_cimguiname"] = "ImVector_ImVectorVector" defs["ImVector_ImVector"][2]["signature"] = "(const ImVector)" defs["ImVector_ImVector"][2]["stname"] = "ImVector" @@ -7708,7 +7724,7 @@ defs["ImVector__grow_capacity"][1]["call_args"] = "(sz)" defs["ImVector__grow_capacity"][1]["cimguiname"] = "ImVector__grow_capacity" defs["ImVector__grow_capacity"][1]["defaults"] = {} defs["ImVector__grow_capacity"][1]["funcname"] = "_grow_capacity" -defs["ImVector__grow_capacity"][1]["location"] = "imgui" +defs["ImVector__grow_capacity"][1]["location"] = "imgui:1412" defs["ImVector__grow_capacity"][1]["ov_cimguiname"] = "ImVector__grow_capacity" defs["ImVector__grow_capacity"][1]["ret"] = "int" defs["ImVector__grow_capacity"][1]["signature"] = "(int)const" @@ -7727,7 +7743,7 @@ defs["ImVector_back"][1]["call_args"] = "()" defs["ImVector_back"][1]["cimguiname"] = "ImVector_back" defs["ImVector_back"][1]["defaults"] = {} defs["ImVector_back"][1]["funcname"] = "back" -defs["ImVector_back"][1]["location"] = "imgui" +defs["ImVector_back"][1]["location"] = "imgui:1408" defs["ImVector_back"][1]["ov_cimguiname"] = "ImVector_backNil" defs["ImVector_back"][1]["ret"] = "T*" defs["ImVector_back"][1]["retref"] = "&" @@ -7745,7 +7761,7 @@ defs["ImVector_back"][2]["call_args"] = "()" defs["ImVector_back"][2]["cimguiname"] = "ImVector_back" defs["ImVector_back"][2]["defaults"] = {} defs["ImVector_back"][2]["funcname"] = "back" -defs["ImVector_back"][2]["location"] = "imgui" +defs["ImVector_back"][2]["location"] = "imgui:1409" defs["ImVector_back"][2]["ov_cimguiname"] = "ImVector_back_const" defs["ImVector_back"][2]["ret"] = "const T*" defs["ImVector_back"][2]["retref"] = "&" @@ -7766,7 +7782,7 @@ defs["ImVector_begin"][1]["call_args"] = "()" defs["ImVector_begin"][1]["cimguiname"] = "ImVector_begin" defs["ImVector_begin"][1]["defaults"] = {} defs["ImVector_begin"][1]["funcname"] = "begin" -defs["ImVector_begin"][1]["location"] = "imgui" +defs["ImVector_begin"][1]["location"] = "imgui:1402" defs["ImVector_begin"][1]["ov_cimguiname"] = "ImVector_beginNil" defs["ImVector_begin"][1]["ret"] = "T*" defs["ImVector_begin"][1]["signature"] = "()" @@ -7783,7 +7799,7 @@ defs["ImVector_begin"][2]["call_args"] = "()" defs["ImVector_begin"][2]["cimguiname"] = "ImVector_begin" defs["ImVector_begin"][2]["defaults"] = {} defs["ImVector_begin"][2]["funcname"] = "begin" -defs["ImVector_begin"][2]["location"] = "imgui" +defs["ImVector_begin"][2]["location"] = "imgui:1403" defs["ImVector_begin"][2]["ov_cimguiname"] = "ImVector_begin_const" defs["ImVector_begin"][2]["ret"] = "const T*" defs["ImVector_begin"][2]["signature"] = "()const" @@ -7803,7 +7819,7 @@ defs["ImVector_capacity"][1]["call_args"] = "()" defs["ImVector_capacity"][1]["cimguiname"] = "ImVector_capacity" defs["ImVector_capacity"][1]["defaults"] = {} defs["ImVector_capacity"][1]["funcname"] = "capacity" -defs["ImVector_capacity"][1]["location"] = "imgui" +defs["ImVector_capacity"][1]["location"] = "imgui:1397" defs["ImVector_capacity"][1]["ov_cimguiname"] = "ImVector_capacity" defs["ImVector_capacity"][1]["ret"] = "int" defs["ImVector_capacity"][1]["signature"] = "()const" @@ -7822,7 +7838,7 @@ defs["ImVector_clear"][1]["call_args"] = "()" defs["ImVector_clear"][1]["cimguiname"] = "ImVector_clear" defs["ImVector_clear"][1]["defaults"] = {} defs["ImVector_clear"][1]["funcname"] = "clear" -defs["ImVector_clear"][1]["location"] = "imgui" +defs["ImVector_clear"][1]["location"] = "imgui:1401" defs["ImVector_clear"][1]["ov_cimguiname"] = "ImVector_clear" defs["ImVector_clear"][1]["ret"] = "void" defs["ImVector_clear"][1]["signature"] = "()" @@ -7844,7 +7860,7 @@ defs["ImVector_contains"][1]["call_args"] = "(v)" defs["ImVector_contains"][1]["cimguiname"] = "ImVector_contains" defs["ImVector_contains"][1]["defaults"] = {} defs["ImVector_contains"][1]["funcname"] = "contains" -defs["ImVector_contains"][1]["location"] = "imgui" +defs["ImVector_contains"][1]["location"] = "imgui:1426" defs["ImVector_contains"][1]["ov_cimguiname"] = "ImVector_contains" defs["ImVector_contains"][1]["ret"] = "bool" defs["ImVector_contains"][1]["signature"] = "(const T)const" @@ -7862,7 +7878,9 @@ defs["ImVector_destroy"][1]["call_args"] = "(self)" defs["ImVector_destroy"][1]["cimguiname"] = "ImVector_destroy" defs["ImVector_destroy"][1]["defaults"] = {} defs["ImVector_destroy"][1]["destructor"] = true +defs["ImVector_destroy"][1]["location"] = "imgui:1392" defs["ImVector_destroy"][1]["ov_cimguiname"] = "ImVector_destroy" +defs["ImVector_destroy"][1]["realdestructor"] = true defs["ImVector_destroy"][1]["ret"] = "void" defs["ImVector_destroy"][1]["signature"] = "(ImVector*)" defs["ImVector_destroy"][1]["stname"] = "ImVector" @@ -7880,7 +7898,7 @@ defs["ImVector_empty"][1]["call_args"] = "()" defs["ImVector_empty"][1]["cimguiname"] = "ImVector_empty" defs["ImVector_empty"][1]["defaults"] = {} defs["ImVector_empty"][1]["funcname"] = "empty" -defs["ImVector_empty"][1]["location"] = "imgui" +defs["ImVector_empty"][1]["location"] = "imgui:1394" defs["ImVector_empty"][1]["ov_cimguiname"] = "ImVector_empty" defs["ImVector_empty"][1]["ret"] = "bool" defs["ImVector_empty"][1]["signature"] = "()const" @@ -7899,7 +7917,7 @@ defs["ImVector_end"][1]["call_args"] = "()" defs["ImVector_end"][1]["cimguiname"] = "ImVector_end" defs["ImVector_end"][1]["defaults"] = {} defs["ImVector_end"][1]["funcname"] = "end" -defs["ImVector_end"][1]["location"] = "imgui" +defs["ImVector_end"][1]["location"] = "imgui:1404" defs["ImVector_end"][1]["ov_cimguiname"] = "ImVector_endNil" defs["ImVector_end"][1]["ret"] = "T*" defs["ImVector_end"][1]["signature"] = "()" @@ -7916,7 +7934,7 @@ defs["ImVector_end"][2]["call_args"] = "()" defs["ImVector_end"][2]["cimguiname"] = "ImVector_end" defs["ImVector_end"][2]["defaults"] = {} defs["ImVector_end"][2]["funcname"] = "end" -defs["ImVector_end"][2]["location"] = "imgui" +defs["ImVector_end"][2]["location"] = "imgui:1405" defs["ImVector_end"][2]["ov_cimguiname"] = "ImVector_end_const" defs["ImVector_end"][2]["ret"] = "const T*" defs["ImVector_end"][2]["signature"] = "()const" @@ -7939,7 +7957,7 @@ defs["ImVector_erase"][1]["call_args"] = "(it)" defs["ImVector_erase"][1]["cimguiname"] = "ImVector_erase" defs["ImVector_erase"][1]["defaults"] = {} defs["ImVector_erase"][1]["funcname"] = "erase" -defs["ImVector_erase"][1]["location"] = "imgui" +defs["ImVector_erase"][1]["location"] = "imgui:1422" defs["ImVector_erase"][1]["ov_cimguiname"] = "ImVector_eraseNil" defs["ImVector_erase"][1]["ret"] = "T*" defs["ImVector_erase"][1]["signature"] = "(const T*)" @@ -7962,7 +7980,7 @@ defs["ImVector_erase"][2]["call_args"] = "(it,it_last)" defs["ImVector_erase"][2]["cimguiname"] = "ImVector_erase" defs["ImVector_erase"][2]["defaults"] = {} defs["ImVector_erase"][2]["funcname"] = "erase" -defs["ImVector_erase"][2]["location"] = "imgui" +defs["ImVector_erase"][2]["location"] = "imgui:1423" defs["ImVector_erase"][2]["ov_cimguiname"] = "ImVector_eraseTPtr" defs["ImVector_erase"][2]["ret"] = "T*" defs["ImVector_erase"][2]["signature"] = "(const T*,const T*)" @@ -7985,7 +8003,7 @@ defs["ImVector_erase_unsorted"][1]["call_args"] = "(it)" defs["ImVector_erase_unsorted"][1]["cimguiname"] = "ImVector_erase_unsorted" defs["ImVector_erase_unsorted"][1]["defaults"] = {} defs["ImVector_erase_unsorted"][1]["funcname"] = "erase_unsorted" -defs["ImVector_erase_unsorted"][1]["location"] = "imgui" +defs["ImVector_erase_unsorted"][1]["location"] = "imgui:1424" defs["ImVector_erase_unsorted"][1]["ov_cimguiname"] = "ImVector_erase_unsorted" defs["ImVector_erase_unsorted"][1]["ret"] = "T*" defs["ImVector_erase_unsorted"][1]["signature"] = "(const T*)" @@ -8007,7 +8025,7 @@ defs["ImVector_find"][1]["call_args"] = "(v)" defs["ImVector_find"][1]["cimguiname"] = "ImVector_find" defs["ImVector_find"][1]["defaults"] = {} defs["ImVector_find"][1]["funcname"] = "find" -defs["ImVector_find"][1]["location"] = "imgui" +defs["ImVector_find"][1]["location"] = "imgui:1427" defs["ImVector_find"][1]["ov_cimguiname"] = "ImVector_findNil" defs["ImVector_find"][1]["ret"] = "T*" defs["ImVector_find"][1]["signature"] = "(const T)" @@ -8027,7 +8045,7 @@ defs["ImVector_find"][2]["call_args"] = "(v)" defs["ImVector_find"][2]["cimguiname"] = "ImVector_find" defs["ImVector_find"][2]["defaults"] = {} defs["ImVector_find"][2]["funcname"] = "find" -defs["ImVector_find"][2]["location"] = "imgui" +defs["ImVector_find"][2]["location"] = "imgui:1428" defs["ImVector_find"][2]["ov_cimguiname"] = "ImVector_find_const" defs["ImVector_find"][2]["ret"] = "const T*" defs["ImVector_find"][2]["signature"] = "(const T)const" @@ -8050,7 +8068,7 @@ defs["ImVector_find_erase"][1]["call_args"] = "(v)" defs["ImVector_find_erase"][1]["cimguiname"] = "ImVector_find_erase" defs["ImVector_find_erase"][1]["defaults"] = {} defs["ImVector_find_erase"][1]["funcname"] = "find_erase" -defs["ImVector_find_erase"][1]["location"] = "imgui" +defs["ImVector_find_erase"][1]["location"] = "imgui:1429" defs["ImVector_find_erase"][1]["ov_cimguiname"] = "ImVector_find_erase" defs["ImVector_find_erase"][1]["ret"] = "bool" defs["ImVector_find_erase"][1]["signature"] = "(const T)" @@ -8072,7 +8090,7 @@ defs["ImVector_find_erase_unsorted"][1]["call_args"] = "(v)" defs["ImVector_find_erase_unsorted"][1]["cimguiname"] = "ImVector_find_erase_unsorted" defs["ImVector_find_erase_unsorted"][1]["defaults"] = {} defs["ImVector_find_erase_unsorted"][1]["funcname"] = "find_erase_unsorted" -defs["ImVector_find_erase_unsorted"][1]["location"] = "imgui" +defs["ImVector_find_erase_unsorted"][1]["location"] = "imgui:1430" defs["ImVector_find_erase_unsorted"][1]["ov_cimguiname"] = "ImVector_find_erase_unsorted" defs["ImVector_find_erase_unsorted"][1]["ret"] = "bool" defs["ImVector_find_erase_unsorted"][1]["signature"] = "(const T)" @@ -8091,7 +8109,7 @@ defs["ImVector_front"][1]["call_args"] = "()" defs["ImVector_front"][1]["cimguiname"] = "ImVector_front" defs["ImVector_front"][1]["defaults"] = {} defs["ImVector_front"][1]["funcname"] = "front" -defs["ImVector_front"][1]["location"] = "imgui" +defs["ImVector_front"][1]["location"] = "imgui:1406" defs["ImVector_front"][1]["ov_cimguiname"] = "ImVector_frontNil" defs["ImVector_front"][1]["ret"] = "T*" defs["ImVector_front"][1]["retref"] = "&" @@ -8109,7 +8127,7 @@ defs["ImVector_front"][2]["call_args"] = "()" defs["ImVector_front"][2]["cimguiname"] = "ImVector_front" defs["ImVector_front"][2]["defaults"] = {} defs["ImVector_front"][2]["funcname"] = "front" -defs["ImVector_front"][2]["location"] = "imgui" +defs["ImVector_front"][2]["location"] = "imgui:1407" defs["ImVector_front"][2]["ov_cimguiname"] = "ImVector_front_const" defs["ImVector_front"][2]["ret"] = "const T*" defs["ImVector_front"][2]["retref"] = "&" @@ -8133,7 +8151,7 @@ defs["ImVector_index_from_ptr"][1]["call_args"] = "(it)" defs["ImVector_index_from_ptr"][1]["cimguiname"] = "ImVector_index_from_ptr" defs["ImVector_index_from_ptr"][1]["defaults"] = {} defs["ImVector_index_from_ptr"][1]["funcname"] = "index_from_ptr" -defs["ImVector_index_from_ptr"][1]["location"] = "imgui" +defs["ImVector_index_from_ptr"][1]["location"] = "imgui:1431" defs["ImVector_index_from_ptr"][1]["ov_cimguiname"] = "ImVector_index_from_ptr" defs["ImVector_index_from_ptr"][1]["ret"] = "int" defs["ImVector_index_from_ptr"][1]["signature"] = "(const T*)const" @@ -8158,7 +8176,7 @@ defs["ImVector_insert"][1]["call_args"] = "(it,v)" defs["ImVector_insert"][1]["cimguiname"] = "ImVector_insert" defs["ImVector_insert"][1]["defaults"] = {} defs["ImVector_insert"][1]["funcname"] = "insert" -defs["ImVector_insert"][1]["location"] = "imgui" +defs["ImVector_insert"][1]["location"] = "imgui:1425" defs["ImVector_insert"][1]["ov_cimguiname"] = "ImVector_insert" defs["ImVector_insert"][1]["ret"] = "T*" defs["ImVector_insert"][1]["signature"] = "(const T*,const T)" @@ -8177,7 +8195,7 @@ defs["ImVector_pop_back"][1]["call_args"] = "()" defs["ImVector_pop_back"][1]["cimguiname"] = "ImVector_pop_back" defs["ImVector_pop_back"][1]["defaults"] = {} defs["ImVector_pop_back"][1]["funcname"] = "pop_back" -defs["ImVector_pop_back"][1]["location"] = "imgui" +defs["ImVector_pop_back"][1]["location"] = "imgui:1420" defs["ImVector_pop_back"][1]["ov_cimguiname"] = "ImVector_pop_back" defs["ImVector_pop_back"][1]["ret"] = "void" defs["ImVector_pop_back"][1]["signature"] = "()" @@ -8199,7 +8217,7 @@ defs["ImVector_push_back"][1]["call_args"] = "(v)" defs["ImVector_push_back"][1]["cimguiname"] = "ImVector_push_back" defs["ImVector_push_back"][1]["defaults"] = {} defs["ImVector_push_back"][1]["funcname"] = "push_back" -defs["ImVector_push_back"][1]["location"] = "imgui" +defs["ImVector_push_back"][1]["location"] = "imgui:1419" defs["ImVector_push_back"][1]["ov_cimguiname"] = "ImVector_push_back" defs["ImVector_push_back"][1]["ret"] = "void" defs["ImVector_push_back"][1]["signature"] = "(const T)" @@ -8221,7 +8239,7 @@ defs["ImVector_push_front"][1]["call_args"] = "(v)" defs["ImVector_push_front"][1]["cimguiname"] = "ImVector_push_front" defs["ImVector_push_front"][1]["defaults"] = {} defs["ImVector_push_front"][1]["funcname"] = "push_front" -defs["ImVector_push_front"][1]["location"] = "imgui" +defs["ImVector_push_front"][1]["location"] = "imgui:1421" defs["ImVector_push_front"][1]["ov_cimguiname"] = "ImVector_push_front" defs["ImVector_push_front"][1]["ret"] = "void" defs["ImVector_push_front"][1]["signature"] = "(const T)" @@ -8243,7 +8261,7 @@ defs["ImVector_reserve"][1]["call_args"] = "(new_capacity)" defs["ImVector_reserve"][1]["cimguiname"] = "ImVector_reserve" defs["ImVector_reserve"][1]["defaults"] = {} defs["ImVector_reserve"][1]["funcname"] = "reserve" -defs["ImVector_reserve"][1]["location"] = "imgui" +defs["ImVector_reserve"][1]["location"] = "imgui:1416" defs["ImVector_reserve"][1]["ov_cimguiname"] = "ImVector_reserve" defs["ImVector_reserve"][1]["ret"] = "void" defs["ImVector_reserve"][1]["signature"] = "(int)" @@ -8265,7 +8283,7 @@ defs["ImVector_resize"][1]["call_args"] = "(new_size)" defs["ImVector_resize"][1]["cimguiname"] = "ImVector_resize" defs["ImVector_resize"][1]["defaults"] = {} defs["ImVector_resize"][1]["funcname"] = "resize" -defs["ImVector_resize"][1]["location"] = "imgui" +defs["ImVector_resize"][1]["location"] = "imgui:1413" defs["ImVector_resize"][1]["ov_cimguiname"] = "ImVector_resizeNil" defs["ImVector_resize"][1]["ret"] = "void" defs["ImVector_resize"][1]["signature"] = "(int)" @@ -8288,7 +8306,7 @@ defs["ImVector_resize"][2]["call_args"] = "(new_size,v)" defs["ImVector_resize"][2]["cimguiname"] = "ImVector_resize" defs["ImVector_resize"][2]["defaults"] = {} defs["ImVector_resize"][2]["funcname"] = "resize" -defs["ImVector_resize"][2]["location"] = "imgui" +defs["ImVector_resize"][2]["location"] = "imgui:1414" defs["ImVector_resize"][2]["ov_cimguiname"] = "ImVector_resizeT" defs["ImVector_resize"][2]["ret"] = "void" defs["ImVector_resize"][2]["signature"] = "(int,const T)" @@ -8311,7 +8329,7 @@ defs["ImVector_shrink"][1]["call_args"] = "(new_size)" defs["ImVector_shrink"][1]["cimguiname"] = "ImVector_shrink" defs["ImVector_shrink"][1]["defaults"] = {} defs["ImVector_shrink"][1]["funcname"] = "shrink" -defs["ImVector_shrink"][1]["location"] = "imgui" +defs["ImVector_shrink"][1]["location"] = "imgui:1415" defs["ImVector_shrink"][1]["ov_cimguiname"] = "ImVector_shrink" defs["ImVector_shrink"][1]["ret"] = "void" defs["ImVector_shrink"][1]["signature"] = "(int)" @@ -8330,7 +8348,7 @@ defs["ImVector_size"][1]["call_args"] = "()" defs["ImVector_size"][1]["cimguiname"] = "ImVector_size" defs["ImVector_size"][1]["defaults"] = {} defs["ImVector_size"][1]["funcname"] = "size" -defs["ImVector_size"][1]["location"] = "imgui" +defs["ImVector_size"][1]["location"] = "imgui:1395" defs["ImVector_size"][1]["ov_cimguiname"] = "ImVector_size" defs["ImVector_size"][1]["ret"] = "int" defs["ImVector_size"][1]["signature"] = "()const" @@ -8349,7 +8367,7 @@ defs["ImVector_size_in_bytes"][1]["call_args"] = "()" defs["ImVector_size_in_bytes"][1]["cimguiname"] = "ImVector_size_in_bytes" defs["ImVector_size_in_bytes"][1]["defaults"] = {} defs["ImVector_size_in_bytes"][1]["funcname"] = "size_in_bytes" -defs["ImVector_size_in_bytes"][1]["location"] = "imgui" +defs["ImVector_size_in_bytes"][1]["location"] = "imgui:1396" defs["ImVector_size_in_bytes"][1]["ov_cimguiname"] = "ImVector_size_in_bytes" defs["ImVector_size_in_bytes"][1]["ret"] = "int" defs["ImVector_size_in_bytes"][1]["signature"] = "()const" @@ -8372,7 +8390,7 @@ defs["ImVector_swap"][1]["call_args"] = "(*rhs)" defs["ImVector_swap"][1]["cimguiname"] = "ImVector_swap" defs["ImVector_swap"][1]["defaults"] = {} defs["ImVector_swap"][1]["funcname"] = "swap" -defs["ImVector_swap"][1]["location"] = "imgui" +defs["ImVector_swap"][1]["location"] = "imgui:1410" defs["ImVector_swap"][1]["ov_cimguiname"] = "ImVector_swap" defs["ImVector_swap"][1]["ret"] = "void" defs["ImVector_swap"][1]["signature"] = "(ImVector*)" @@ -8395,7 +8413,7 @@ defs["igAcceptDragDropPayload"][1]["cimguiname"] = "igAcceptDragDropPayload" defs["igAcceptDragDropPayload"][1]["defaults"] = {} defs["igAcceptDragDropPayload"][1]["defaults"]["flags"] = "0" defs["igAcceptDragDropPayload"][1]["funcname"] = "AcceptDragDropPayload" -defs["igAcceptDragDropPayload"][1]["location"] = "imgui" +defs["igAcceptDragDropPayload"][1]["location"] = "imgui:676" defs["igAcceptDragDropPayload"][1]["namespace"] = "ImGui" defs["igAcceptDragDropPayload"][1]["ov_cimguiname"] = "igAcceptDragDropPayload" defs["igAcceptDragDropPayload"][1]["ret"] = "const ImGuiPayload*" @@ -8414,7 +8432,7 @@ defs["igActivateItem"][1]["call_args"] = "(id)" defs["igActivateItem"][1]["cimguiname"] = "igActivateItem" defs["igActivateItem"][1]["defaults"] = {} defs["igActivateItem"][1]["funcname"] = "ActivateItem" -defs["igActivateItem"][1]["location"] = "internal" +defs["igActivateItem"][1]["location"] = "imgui_internal:1885" defs["igActivateItem"][1]["namespace"] = "ImGui" defs["igActivateItem"][1]["ov_cimguiname"] = "igActivateItem" defs["igActivateItem"][1]["ret"] = "void" @@ -8430,7 +8448,7 @@ defs["igAlignTextToFramePadding"][1]["call_args"] = "()" defs["igAlignTextToFramePadding"][1]["cimguiname"] = "igAlignTextToFramePadding" defs["igAlignTextToFramePadding"][1]["defaults"] = {} defs["igAlignTextToFramePadding"][1]["funcname"] = "AlignTextToFramePadding" -defs["igAlignTextToFramePadding"][1]["location"] = "imgui" +defs["igAlignTextToFramePadding"][1]["location"] = "imgui:400" defs["igAlignTextToFramePadding"][1]["namespace"] = "ImGui" defs["igAlignTextToFramePadding"][1]["ov_cimguiname"] = "igAlignTextToFramePadding" defs["igAlignTextToFramePadding"][1]["ret"] = "void" @@ -8452,7 +8470,7 @@ defs["igArrowButton"][1]["call_args"] = "(str_id,dir)" defs["igArrowButton"][1]["cimguiname"] = "igArrowButton" defs["igArrowButton"][1]["defaults"] = {} defs["igArrowButton"][1]["funcname"] = "ArrowButton" -defs["igArrowButton"][1]["location"] = "imgui" +defs["igArrowButton"][1]["location"] = "imgui:443" defs["igArrowButton"][1]["namespace"] = "ImGui" defs["igArrowButton"][1]["ov_cimguiname"] = "igArrowButton" defs["igArrowButton"][1]["ret"] = "bool" @@ -8481,7 +8499,7 @@ defs["igArrowButtonEx"][1]["cimguiname"] = "igArrowButtonEx" defs["igArrowButtonEx"][1]["defaults"] = {} defs["igArrowButtonEx"][1]["defaults"]["flags"] = "0" defs["igArrowButtonEx"][1]["funcname"] = "ArrowButtonEx" -defs["igArrowButtonEx"][1]["location"] = "internal" +defs["igArrowButtonEx"][1]["location"] = "imgui_internal:1970" defs["igArrowButtonEx"][1]["namespace"] = "ImGui" defs["igArrowButtonEx"][1]["ov_cimguiname"] = "igArrowButtonEx" defs["igArrowButtonEx"][1]["ret"] = "bool" @@ -8506,9 +8524,9 @@ defs["igBegin"][1]["call_args"] = "(name,p_open,flags)" defs["igBegin"][1]["cimguiname"] = "igBegin" defs["igBegin"][1]["defaults"] = {} defs["igBegin"][1]["defaults"]["flags"] = "0" -defs["igBegin"][1]["defaults"]["p_open"] = "((void*)0)" +defs["igBegin"][1]["defaults"]["p_open"] = "NULL" defs["igBegin"][1]["funcname"] = "Begin" -defs["igBegin"][1]["location"] = "imgui" +defs["igBegin"][1]["location"] = "imgui:284" defs["igBegin"][1]["namespace"] = "ImGui" defs["igBegin"][1]["ov_cimguiname"] = "igBegin" defs["igBegin"][1]["ret"] = "bool" @@ -8539,7 +8557,7 @@ defs["igBeginChild"][1]["defaults"]["border"] = "false" defs["igBeginChild"][1]["defaults"]["flags"] = "0" defs["igBeginChild"][1]["defaults"]["size"] = "ImVec2(0,0)" defs["igBeginChild"][1]["funcname"] = "BeginChild" -defs["igBeginChild"][1]["location"] = "imgui" +defs["igBeginChild"][1]["location"] = "imgui:292" defs["igBeginChild"][1]["namespace"] = "ImGui" defs["igBeginChild"][1]["ov_cimguiname"] = "igBeginChildStr" defs["igBeginChild"][1]["ret"] = "bool" @@ -8568,7 +8586,7 @@ defs["igBeginChild"][2]["defaults"]["border"] = "false" defs["igBeginChild"][2]["defaults"]["flags"] = "0" defs["igBeginChild"][2]["defaults"]["size"] = "ImVec2(0,0)" defs["igBeginChild"][2]["funcname"] = "BeginChild" -defs["igBeginChild"][2]["location"] = "imgui" +defs["igBeginChild"][2]["location"] = "imgui:293" defs["igBeginChild"][2]["namespace"] = "ImGui" defs["igBeginChild"][2]["ov_cimguiname"] = "igBeginChildID" defs["igBeginChild"][2]["ret"] = "bool" @@ -8600,7 +8618,7 @@ defs["igBeginChildEx"][1]["call_args"] = "(name,id,size_arg,border,flags)" defs["igBeginChildEx"][1]["cimguiname"] = "igBeginChildEx" defs["igBeginChildEx"][1]["defaults"] = {} defs["igBeginChildEx"][1]["funcname"] = "BeginChildEx" -defs["igBeginChildEx"][1]["location"] = "internal" +defs["igBeginChildEx"][1]["location"] = "imgui_internal:1865" defs["igBeginChildEx"][1]["namespace"] = "ImGui" defs["igBeginChildEx"][1]["ov_cimguiname"] = "igBeginChildEx" defs["igBeginChildEx"][1]["ret"] = "bool" @@ -8626,7 +8644,7 @@ defs["igBeginChildFrame"][1]["cimguiname"] = "igBeginChildFrame" defs["igBeginChildFrame"][1]["defaults"] = {} defs["igBeginChildFrame"][1]["defaults"]["flags"] = "0" defs["igBeginChildFrame"][1]["funcname"] = "BeginChildFrame" -defs["igBeginChildFrame"][1]["location"] = "imgui" +defs["igBeginChildFrame"][1]["location"] = "imgui:722" defs["igBeginChildFrame"][1]["namespace"] = "ImGui" defs["igBeginChildFrame"][1]["ov_cimguiname"] = "igBeginChildFrame" defs["igBeginChildFrame"][1]["ret"] = "bool" @@ -8652,7 +8670,7 @@ defs["igBeginColumns"][1]["cimguiname"] = "igBeginColumns" defs["igBeginColumns"][1]["defaults"] = {} defs["igBeginColumns"][1]["defaults"]["flags"] = "0" defs["igBeginColumns"][1]["funcname"] = "BeginColumns" -defs["igBeginColumns"][1]["location"] = "internal" +defs["igBeginColumns"][1]["location"] = "imgui_internal:1914" defs["igBeginColumns"][1]["namespace"] = "ImGui" defs["igBeginColumns"][1]["ov_cimguiname"] = "igBeginColumns" defs["igBeginColumns"][1]["ret"] = "void" @@ -8678,7 +8696,7 @@ defs["igBeginCombo"][1]["cimguiname"] = "igBeginCombo" defs["igBeginCombo"][1]["defaults"] = {} defs["igBeginCombo"][1]["defaults"]["flags"] = "0" defs["igBeginCombo"][1]["funcname"] = "BeginCombo" -defs["igBeginCombo"][1]["location"] = "imgui" +defs["igBeginCombo"][1]["location"] = "imgui:456" defs["igBeginCombo"][1]["namespace"] = "ImGui" defs["igBeginCombo"][1]["ov_cimguiname"] = "igBeginCombo" defs["igBeginCombo"][1]["ret"] = "bool" @@ -8698,7 +8716,7 @@ defs["igBeginDragDropSource"][1]["cimguiname"] = "igBeginDragDropSource" defs["igBeginDragDropSource"][1]["defaults"] = {} defs["igBeginDragDropSource"][1]["defaults"]["flags"] = "0" defs["igBeginDragDropSource"][1]["funcname"] = "BeginDragDropSource" -defs["igBeginDragDropSource"][1]["location"] = "imgui" +defs["igBeginDragDropSource"][1]["location"] = "imgui:672" defs["igBeginDragDropSource"][1]["namespace"] = "ImGui" defs["igBeginDragDropSource"][1]["ov_cimguiname"] = "igBeginDragDropSource" defs["igBeginDragDropSource"][1]["ret"] = "bool" @@ -8714,7 +8732,7 @@ defs["igBeginDragDropTarget"][1]["call_args"] = "()" defs["igBeginDragDropTarget"][1]["cimguiname"] = "igBeginDragDropTarget" defs["igBeginDragDropTarget"][1]["defaults"] = {} defs["igBeginDragDropTarget"][1]["funcname"] = "BeginDragDropTarget" -defs["igBeginDragDropTarget"][1]["location"] = "imgui" +defs["igBeginDragDropTarget"][1]["location"] = "imgui:675" defs["igBeginDragDropTarget"][1]["namespace"] = "ImGui" defs["igBeginDragDropTarget"][1]["ov_cimguiname"] = "igBeginDragDropTarget" defs["igBeginDragDropTarget"][1]["ret"] = "bool" @@ -8736,7 +8754,7 @@ defs["igBeginDragDropTargetCustom"][1]["call_args"] = "(bb,id)" defs["igBeginDragDropTargetCustom"][1]["cimguiname"] = "igBeginDragDropTargetCustom" defs["igBeginDragDropTargetCustom"][1]["defaults"] = {} defs["igBeginDragDropTargetCustom"][1]["funcname"] = "BeginDragDropTargetCustom" -defs["igBeginDragDropTargetCustom"][1]["location"] = "internal" +defs["igBeginDragDropTargetCustom"][1]["location"] = "imgui_internal:1908" defs["igBeginDragDropTargetCustom"][1]["namespace"] = "ImGui" defs["igBeginDragDropTargetCustom"][1]["ov_cimguiname"] = "igBeginDragDropTargetCustom" defs["igBeginDragDropTargetCustom"][1]["ret"] = "bool" @@ -8752,7 +8770,7 @@ defs["igBeginGroup"][1]["call_args"] = "()" defs["igBeginGroup"][1]["cimguiname"] = "igBeginGroup" defs["igBeginGroup"][1]["defaults"] = {} defs["igBeginGroup"][1]["funcname"] = "BeginGroup" -defs["igBeginGroup"][1]["location"] = "imgui" +defs["igBeginGroup"][1]["location"] = "imgui:389" defs["igBeginGroup"][1]["namespace"] = "ImGui" defs["igBeginGroup"][1]["ov_cimguiname"] = "igBeginGroup" defs["igBeginGroup"][1]["ret"] = "void" @@ -8768,7 +8786,7 @@ defs["igBeginMainMenuBar"][1]["call_args"] = "()" defs["igBeginMainMenuBar"][1]["cimguiname"] = "igBeginMainMenuBar" defs["igBeginMainMenuBar"][1]["defaults"] = {} defs["igBeginMainMenuBar"][1]["funcname"] = "BeginMainMenuBar" -defs["igBeginMainMenuBar"][1]["location"] = "imgui" +defs["igBeginMainMenuBar"][1]["location"] = "imgui:588" defs["igBeginMainMenuBar"][1]["namespace"] = "ImGui" defs["igBeginMainMenuBar"][1]["ov_cimguiname"] = "igBeginMainMenuBar" defs["igBeginMainMenuBar"][1]["ret"] = "bool" @@ -8791,7 +8809,7 @@ defs["igBeginMenu"][1]["cimguiname"] = "igBeginMenu" defs["igBeginMenu"][1]["defaults"] = {} defs["igBeginMenu"][1]["defaults"]["enabled"] = "true" defs["igBeginMenu"][1]["funcname"] = "BeginMenu" -defs["igBeginMenu"][1]["location"] = "imgui" +defs["igBeginMenu"][1]["location"] = "imgui:590" defs["igBeginMenu"][1]["namespace"] = "ImGui" defs["igBeginMenu"][1]["ov_cimguiname"] = "igBeginMenu" defs["igBeginMenu"][1]["ret"] = "bool" @@ -8807,7 +8825,7 @@ defs["igBeginMenuBar"][1]["call_args"] = "()" defs["igBeginMenuBar"][1]["cimguiname"] = "igBeginMenuBar" defs["igBeginMenuBar"][1]["defaults"] = {} defs["igBeginMenuBar"][1]["funcname"] = "BeginMenuBar" -defs["igBeginMenuBar"][1]["location"] = "imgui" +defs["igBeginMenuBar"][1]["location"] = "imgui:586" defs["igBeginMenuBar"][1]["namespace"] = "ImGui" defs["igBeginMenuBar"][1]["ov_cimguiname"] = "igBeginMenuBar" defs["igBeginMenuBar"][1]["ret"] = "bool" @@ -8830,7 +8848,7 @@ defs["igBeginPopup"][1]["cimguiname"] = "igBeginPopup" defs["igBeginPopup"][1]["defaults"] = {} defs["igBeginPopup"][1]["defaults"]["flags"] = "0" defs["igBeginPopup"][1]["funcname"] = "BeginPopup" -defs["igBeginPopup"][1]["location"] = "imgui" +defs["igBeginPopup"][1]["location"] = "imgui:613" defs["igBeginPopup"][1]["namespace"] = "ImGui" defs["igBeginPopup"][1]["ov_cimguiname"] = "igBeginPopup" defs["igBeginPopup"][1]["ret"] = "bool" @@ -8852,9 +8870,9 @@ defs["igBeginPopupContextItem"][1]["call_args"] = "(str_id,popup_flags)" defs["igBeginPopupContextItem"][1]["cimguiname"] = "igBeginPopupContextItem" defs["igBeginPopupContextItem"][1]["defaults"] = {} defs["igBeginPopupContextItem"][1]["defaults"]["popup_flags"] = "1" -defs["igBeginPopupContextItem"][1]["defaults"]["str_id"] = "((void*)0)" +defs["igBeginPopupContextItem"][1]["defaults"]["str_id"] = "NULL" defs["igBeginPopupContextItem"][1]["funcname"] = "BeginPopupContextItem" -defs["igBeginPopupContextItem"][1]["location"] = "imgui" +defs["igBeginPopupContextItem"][1]["location"] = "imgui:630" defs["igBeginPopupContextItem"][1]["namespace"] = "ImGui" defs["igBeginPopupContextItem"][1]["ov_cimguiname"] = "igBeginPopupContextItem" defs["igBeginPopupContextItem"][1]["ret"] = "bool" @@ -8876,9 +8894,9 @@ defs["igBeginPopupContextVoid"][1]["call_args"] = "(str_id,popup_flags)" defs["igBeginPopupContextVoid"][1]["cimguiname"] = "igBeginPopupContextVoid" defs["igBeginPopupContextVoid"][1]["defaults"] = {} defs["igBeginPopupContextVoid"][1]["defaults"]["popup_flags"] = "1" -defs["igBeginPopupContextVoid"][1]["defaults"]["str_id"] = "((void*)0)" +defs["igBeginPopupContextVoid"][1]["defaults"]["str_id"] = "NULL" defs["igBeginPopupContextVoid"][1]["funcname"] = "BeginPopupContextVoid" -defs["igBeginPopupContextVoid"][1]["location"] = "imgui" +defs["igBeginPopupContextVoid"][1]["location"] = "imgui:632" defs["igBeginPopupContextVoid"][1]["namespace"] = "ImGui" defs["igBeginPopupContextVoid"][1]["ov_cimguiname"] = "igBeginPopupContextVoid" defs["igBeginPopupContextVoid"][1]["ret"] = "bool" @@ -8900,9 +8918,9 @@ defs["igBeginPopupContextWindow"][1]["call_args"] = "(str_id,popup_flags)" defs["igBeginPopupContextWindow"][1]["cimguiname"] = "igBeginPopupContextWindow" defs["igBeginPopupContextWindow"][1]["defaults"] = {} defs["igBeginPopupContextWindow"][1]["defaults"]["popup_flags"] = "1" -defs["igBeginPopupContextWindow"][1]["defaults"]["str_id"] = "((void*)0)" +defs["igBeginPopupContextWindow"][1]["defaults"]["str_id"] = "NULL" defs["igBeginPopupContextWindow"][1]["funcname"] = "BeginPopupContextWindow" -defs["igBeginPopupContextWindow"][1]["location"] = "imgui" +defs["igBeginPopupContextWindow"][1]["location"] = "imgui:631" defs["igBeginPopupContextWindow"][1]["namespace"] = "ImGui" defs["igBeginPopupContextWindow"][1]["ov_cimguiname"] = "igBeginPopupContextWindow" defs["igBeginPopupContextWindow"][1]["ret"] = "bool" @@ -8924,7 +8942,7 @@ defs["igBeginPopupEx"][1]["call_args"] = "(id,extra_flags)" defs["igBeginPopupEx"][1]["cimguiname"] = "igBeginPopupEx" defs["igBeginPopupEx"][1]["defaults"] = {} defs["igBeginPopupEx"][1]["funcname"] = "BeginPopupEx" -defs["igBeginPopupEx"][1]["location"] = "internal" +defs["igBeginPopupEx"][1]["location"] = "imgui_internal:1870" defs["igBeginPopupEx"][1]["namespace"] = "ImGui" defs["igBeginPopupEx"][1]["ov_cimguiname"] = "igBeginPopupEx" defs["igBeginPopupEx"][1]["ret"] = "bool" @@ -8949,9 +8967,9 @@ defs["igBeginPopupModal"][1]["call_args"] = "(name,p_open,flags)" defs["igBeginPopupModal"][1]["cimguiname"] = "igBeginPopupModal" defs["igBeginPopupModal"][1]["defaults"] = {} defs["igBeginPopupModal"][1]["defaults"]["flags"] = "0" -defs["igBeginPopupModal"][1]["defaults"]["p_open"] = "((void*)0)" +defs["igBeginPopupModal"][1]["defaults"]["p_open"] = "NULL" defs["igBeginPopupModal"][1]["funcname"] = "BeginPopupModal" -defs["igBeginPopupModal"][1]["location"] = "imgui" +defs["igBeginPopupModal"][1]["location"] = "imgui:614" defs["igBeginPopupModal"][1]["namespace"] = "ImGui" defs["igBeginPopupModal"][1]["ov_cimguiname"] = "igBeginPopupModal" defs["igBeginPopupModal"][1]["ret"] = "bool" @@ -8974,7 +8992,7 @@ defs["igBeginTabBar"][1]["cimguiname"] = "igBeginTabBar" defs["igBeginTabBar"][1]["defaults"] = {} defs["igBeginTabBar"][1]["defaults"]["flags"] = "0" defs["igBeginTabBar"][1]["funcname"] = "BeginTabBar" -defs["igBeginTabBar"][1]["location"] = "imgui" +defs["igBeginTabBar"][1]["location"] = "imgui:654" defs["igBeginTabBar"][1]["namespace"] = "ImGui" defs["igBeginTabBar"][1]["ov_cimguiname"] = "igBeginTabBar" defs["igBeginTabBar"][1]["ret"] = "bool" @@ -8999,7 +9017,7 @@ defs["igBeginTabBarEx"][1]["call_args"] = "(tab_bar,bb,flags)" defs["igBeginTabBarEx"][1]["cimguiname"] = "igBeginTabBarEx" defs["igBeginTabBarEx"][1]["defaults"] = {} defs["igBeginTabBarEx"][1]["funcname"] = "BeginTabBarEx" -defs["igBeginTabBarEx"][1]["location"] = "internal" +defs["igBeginTabBarEx"][1]["location"] = "imgui_internal:1925" defs["igBeginTabBarEx"][1]["namespace"] = "ImGui" defs["igBeginTabBarEx"][1]["ov_cimguiname"] = "igBeginTabBarEx" defs["igBeginTabBarEx"][1]["ret"] = "bool" @@ -9024,9 +9042,9 @@ defs["igBeginTabItem"][1]["call_args"] = "(label,p_open,flags)" defs["igBeginTabItem"][1]["cimguiname"] = "igBeginTabItem" defs["igBeginTabItem"][1]["defaults"] = {} defs["igBeginTabItem"][1]["defaults"]["flags"] = "0" -defs["igBeginTabItem"][1]["defaults"]["p_open"] = "((void*)0)" +defs["igBeginTabItem"][1]["defaults"]["p_open"] = "NULL" defs["igBeginTabItem"][1]["funcname"] = "BeginTabItem" -defs["igBeginTabItem"][1]["location"] = "imgui" +defs["igBeginTabItem"][1]["location"] = "imgui:656" defs["igBeginTabItem"][1]["namespace"] = "ImGui" defs["igBeginTabItem"][1]["ov_cimguiname"] = "igBeginTabItem" defs["igBeginTabItem"][1]["ret"] = "bool" @@ -9042,7 +9060,7 @@ defs["igBeginTooltip"][1]["call_args"] = "()" defs["igBeginTooltip"][1]["cimguiname"] = "igBeginTooltip" defs["igBeginTooltip"][1]["defaults"] = {} defs["igBeginTooltip"][1]["funcname"] = "BeginTooltip" -defs["igBeginTooltip"][1]["location"] = "imgui" +defs["igBeginTooltip"][1]["location"] = "imgui:597" defs["igBeginTooltip"][1]["namespace"] = "ImGui" defs["igBeginTooltip"][1]["ov_cimguiname"] = "igBeginTooltip" defs["igBeginTooltip"][1]["ret"] = "void" @@ -9064,7 +9082,7 @@ defs["igBeginTooltipEx"][1]["call_args"] = "(extra_flags,tooltip_flags)" defs["igBeginTooltipEx"][1]["cimguiname"] = "igBeginTooltipEx" defs["igBeginTooltipEx"][1]["defaults"] = {} defs["igBeginTooltipEx"][1]["funcname"] = "BeginTooltipEx" -defs["igBeginTooltipEx"][1]["location"] = "internal" +defs["igBeginTooltipEx"][1]["location"] = "imgui_internal:1871" defs["igBeginTooltipEx"][1]["namespace"] = "ImGui" defs["igBeginTooltipEx"][1]["ov_cimguiname"] = "igBeginTooltipEx" defs["igBeginTooltipEx"][1]["ret"] = "void" @@ -9083,7 +9101,7 @@ defs["igBringWindowToDisplayBack"][1]["call_args"] = "(window)" defs["igBringWindowToDisplayBack"][1]["cimguiname"] = "igBringWindowToDisplayBack" defs["igBringWindowToDisplayBack"][1]["defaults"] = {} defs["igBringWindowToDisplayBack"][1]["funcname"] = "BringWindowToDisplayBack" -defs["igBringWindowToDisplayBack"][1]["location"] = "internal" +defs["igBringWindowToDisplayBack"][1]["location"] = "imgui_internal:1794" defs["igBringWindowToDisplayBack"][1]["namespace"] = "ImGui" defs["igBringWindowToDisplayBack"][1]["ov_cimguiname"] = "igBringWindowToDisplayBack" defs["igBringWindowToDisplayBack"][1]["ret"] = "void" @@ -9102,7 +9120,7 @@ defs["igBringWindowToDisplayFront"][1]["call_args"] = "(window)" defs["igBringWindowToDisplayFront"][1]["cimguiname"] = "igBringWindowToDisplayFront" defs["igBringWindowToDisplayFront"][1]["defaults"] = {} defs["igBringWindowToDisplayFront"][1]["funcname"] = "BringWindowToDisplayFront" -defs["igBringWindowToDisplayFront"][1]["location"] = "internal" +defs["igBringWindowToDisplayFront"][1]["location"] = "imgui_internal:1793" defs["igBringWindowToDisplayFront"][1]["namespace"] = "ImGui" defs["igBringWindowToDisplayFront"][1]["ov_cimguiname"] = "igBringWindowToDisplayFront" defs["igBringWindowToDisplayFront"][1]["ret"] = "void" @@ -9121,7 +9139,7 @@ defs["igBringWindowToFocusFront"][1]["call_args"] = "(window)" defs["igBringWindowToFocusFront"][1]["cimguiname"] = "igBringWindowToFocusFront" defs["igBringWindowToFocusFront"][1]["defaults"] = {} defs["igBringWindowToFocusFront"][1]["funcname"] = "BringWindowToFocusFront" -defs["igBringWindowToFocusFront"][1]["location"] = "internal" +defs["igBringWindowToFocusFront"][1]["location"] = "imgui_internal:1792" defs["igBringWindowToFocusFront"][1]["namespace"] = "ImGui" defs["igBringWindowToFocusFront"][1]["ov_cimguiname"] = "igBringWindowToFocusFront" defs["igBringWindowToFocusFront"][1]["ret"] = "void" @@ -9137,7 +9155,7 @@ defs["igBullet"][1]["call_args"] = "()" defs["igBullet"][1]["cimguiname"] = "igBullet" defs["igBullet"][1]["defaults"] = {} defs["igBullet"][1]["funcname"] = "Bullet" -defs["igBullet"][1]["location"] = "imgui" +defs["igBullet"][1]["location"] = "imgui:451" defs["igBullet"][1]["namespace"] = "ImGui" defs["igBullet"][1]["ov_cimguiname"] = "igBullet" defs["igBullet"][1]["ret"] = "void" @@ -9160,7 +9178,7 @@ defs["igBulletText"][1]["cimguiname"] = "igBulletText" defs["igBulletText"][1]["defaults"] = {} defs["igBulletText"][1]["funcname"] = "BulletText" defs["igBulletText"][1]["isvararg"] = "...)" -defs["igBulletText"][1]["location"] = "imgui" +defs["igBulletText"][1]["location"] = "imgui:434" defs["igBulletText"][1]["namespace"] = "ImGui" defs["igBulletText"][1]["ov_cimguiname"] = "igBulletText" defs["igBulletText"][1]["ret"] = "void" @@ -9182,7 +9200,7 @@ defs["igBulletTextV"][1]["call_args"] = "(fmt,args)" defs["igBulletTextV"][1]["cimguiname"] = "igBulletTextV" defs["igBulletTextV"][1]["defaults"] = {} defs["igBulletTextV"][1]["funcname"] = "BulletTextV" -defs["igBulletTextV"][1]["location"] = "imgui" +defs["igBulletTextV"][1]["location"] = "imgui:435" defs["igBulletTextV"][1]["namespace"] = "ImGui" defs["igBulletTextV"][1]["ov_cimguiname"] = "igBulletTextV" defs["igBulletTextV"][1]["ret"] = "void" @@ -9205,7 +9223,7 @@ defs["igButton"][1]["cimguiname"] = "igButton" defs["igButton"][1]["defaults"] = {} defs["igButton"][1]["defaults"]["size"] = "ImVec2(0,0)" defs["igButton"][1]["funcname"] = "Button" -defs["igButton"][1]["location"] = "imgui" +defs["igButton"][1]["location"] = "imgui:440" defs["igButton"][1]["namespace"] = "ImGui" defs["igButton"][1]["ov_cimguiname"] = "igButton" defs["igButton"][1]["ret"] = "bool" @@ -9237,7 +9255,7 @@ defs["igButtonBehavior"][1]["cimguiname"] = "igButtonBehavior" defs["igButtonBehavior"][1]["defaults"] = {} defs["igButtonBehavior"][1]["defaults"]["flags"] = "0" defs["igButtonBehavior"][1]["funcname"] = "ButtonBehavior" -defs["igButtonBehavior"][1]["location"] = "internal" +defs["igButtonBehavior"][1]["location"] = "imgui_internal:1980" defs["igButtonBehavior"][1]["namespace"] = "ImGui" defs["igButtonBehavior"][1]["ov_cimguiname"] = "igButtonBehavior" defs["igButtonBehavior"][1]["ret"] = "bool" @@ -9264,7 +9282,7 @@ defs["igButtonEx"][1]["defaults"] = {} defs["igButtonEx"][1]["defaults"]["flags"] = "0" defs["igButtonEx"][1]["defaults"]["size_arg"] = "ImVec2(0,0)" defs["igButtonEx"][1]["funcname"] = "ButtonEx" -defs["igButtonEx"][1]["location"] = "internal" +defs["igButtonEx"][1]["location"] = "imgui_internal:1967" defs["igButtonEx"][1]["namespace"] = "ImGui" defs["igButtonEx"][1]["ov_cimguiname"] = "igButtonEx" defs["igButtonEx"][1]["ret"] = "bool" @@ -9292,7 +9310,7 @@ defs["igCalcItemSize"][1]["call_args"] = "(size,default_w,default_h)" defs["igCalcItemSize"][1]["cimguiname"] = "igCalcItemSize" defs["igCalcItemSize"][1]["defaults"] = {} defs["igCalcItemSize"][1]["funcname"] = "CalcItemSize" -defs["igCalcItemSize"][1]["location"] = "internal" +defs["igCalcItemSize"][1]["location"] = "imgui_internal:1851" defs["igCalcItemSize"][1]["namespace"] = "ImGui" defs["igCalcItemSize"][1]["nonUDT"] = 1 defs["igCalcItemSize"][1]["ov_cimguiname"] = "igCalcItemSize" @@ -9309,7 +9327,7 @@ defs["igCalcItemWidth"][1]["call_args"] = "()" defs["igCalcItemWidth"][1]["cimguiname"] = "igCalcItemWidth" defs["igCalcItemWidth"][1]["defaults"] = {} defs["igCalcItemWidth"][1]["funcname"] = "CalcItemWidth" -defs["igCalcItemWidth"][1]["location"] = "imgui" +defs["igCalcItemWidth"][1]["location"] = "imgui:367" defs["igCalcItemWidth"][1]["namespace"] = "ImGui" defs["igCalcItemWidth"][1]["ov_cimguiname"] = "igCalcItemWidth" defs["igCalcItemWidth"][1]["ret"] = "float" @@ -9337,7 +9355,7 @@ defs["igCalcListClipping"][1]["call_args"] = "(items_count,items_height,out_item defs["igCalcListClipping"][1]["cimguiname"] = "igCalcListClipping" defs["igCalcListClipping"][1]["defaults"] = {} defs["igCalcListClipping"][1]["funcname"] = "CalcListClipping" -defs["igCalcListClipping"][1]["location"] = "imgui" +defs["igCalcListClipping"][1]["location"] = "imgui:721" defs["igCalcListClipping"][1]["namespace"] = "ImGui" defs["igCalcListClipping"][1]["ov_cimguiname"] = "igCalcListClipping" defs["igCalcListClipping"][1]["ret"] = "void" @@ -9368,10 +9386,10 @@ defs["igCalcTextSize"][1]["call_args"] = "(text,text_end,hide_text_after_double_ defs["igCalcTextSize"][1]["cimguiname"] = "igCalcTextSize" defs["igCalcTextSize"][1]["defaults"] = {} defs["igCalcTextSize"][1]["defaults"]["hide_text_after_double_hash"] = "false" -defs["igCalcTextSize"][1]["defaults"]["text_end"] = "((void*)0)" +defs["igCalcTextSize"][1]["defaults"]["text_end"] = "NULL" defs["igCalcTextSize"][1]["defaults"]["wrap_width"] = "-1.0f" defs["igCalcTextSize"][1]["funcname"] = "CalcTextSize" -defs["igCalcTextSize"][1]["location"] = "imgui" +defs["igCalcTextSize"][1]["location"] = "imgui:726" defs["igCalcTextSize"][1]["namespace"] = "ImGui" defs["igCalcTextSize"][1]["nonUDT"] = 1 defs["igCalcTextSize"][1]["ov_cimguiname"] = "igCalcTextSize" @@ -9400,7 +9418,7 @@ defs["igCalcTypematicRepeatAmount"][1]["call_args"] = "(t0,t1,repeat_delay,repea defs["igCalcTypematicRepeatAmount"][1]["cimguiname"] = "igCalcTypematicRepeatAmount" defs["igCalcTypematicRepeatAmount"][1]["defaults"] = {} defs["igCalcTypematicRepeatAmount"][1]["funcname"] = "CalcTypematicRepeatAmount" -defs["igCalcTypematicRepeatAmount"][1]["location"] = "internal" +defs["igCalcTypematicRepeatAmount"][1]["location"] = "imgui_internal:1884" defs["igCalcTypematicRepeatAmount"][1]["namespace"] = "ImGui" defs["igCalcTypematicRepeatAmount"][1]["ov_cimguiname"] = "igCalcTypematicRepeatAmount" defs["igCalcTypematicRepeatAmount"][1]["ret"] = "int" @@ -9422,7 +9440,7 @@ defs["igCalcWindowExpectedSize"][1]["call_args"] = "(window)" defs["igCalcWindowExpectedSize"][1]["cimguiname"] = "igCalcWindowExpectedSize" defs["igCalcWindowExpectedSize"][1]["defaults"] = {} defs["igCalcWindowExpectedSize"][1]["funcname"] = "CalcWindowExpectedSize" -defs["igCalcWindowExpectedSize"][1]["location"] = "internal" +defs["igCalcWindowExpectedSize"][1]["location"] = "imgui_internal:1780" defs["igCalcWindowExpectedSize"][1]["namespace"] = "ImGui" defs["igCalcWindowExpectedSize"][1]["nonUDT"] = 1 defs["igCalcWindowExpectedSize"][1]["ov_cimguiname"] = "igCalcWindowExpectedSize" @@ -9445,7 +9463,7 @@ defs["igCalcWrapWidthForPos"][1]["call_args"] = "(pos,wrap_pos_x)" defs["igCalcWrapWidthForPos"][1]["cimguiname"] = "igCalcWrapWidthForPos" defs["igCalcWrapWidthForPos"][1]["defaults"] = {} defs["igCalcWrapWidthForPos"][1]["funcname"] = "CalcWrapWidthForPos" -defs["igCalcWrapWidthForPos"][1]["location"] = "internal" +defs["igCalcWrapWidthForPos"][1]["location"] = "imgui_internal:1852" defs["igCalcWrapWidthForPos"][1]["namespace"] = "ImGui" defs["igCalcWrapWidthForPos"][1]["ov_cimguiname"] = "igCalcWrapWidthForPos" defs["igCalcWrapWidthForPos"][1]["ret"] = "float" @@ -9465,7 +9483,7 @@ defs["igCaptureKeyboardFromApp"][1]["cimguiname"] = "igCaptureKeyboardFromApp" defs["igCaptureKeyboardFromApp"][1]["defaults"] = {} defs["igCaptureKeyboardFromApp"][1]["defaults"]["want_capture_keyboard_value"] = "true" defs["igCaptureKeyboardFromApp"][1]["funcname"] = "CaptureKeyboardFromApp" -defs["igCaptureKeyboardFromApp"][1]["location"] = "imgui" +defs["igCaptureKeyboardFromApp"][1]["location"] = "imgui:742" defs["igCaptureKeyboardFromApp"][1]["namespace"] = "ImGui" defs["igCaptureKeyboardFromApp"][1]["ov_cimguiname"] = "igCaptureKeyboardFromApp" defs["igCaptureKeyboardFromApp"][1]["ret"] = "void" @@ -9485,7 +9503,7 @@ defs["igCaptureMouseFromApp"][1]["cimguiname"] = "igCaptureMouseFromApp" defs["igCaptureMouseFromApp"][1]["defaults"] = {} defs["igCaptureMouseFromApp"][1]["defaults"]["want_capture_mouse_value"] = "true" defs["igCaptureMouseFromApp"][1]["funcname"] = "CaptureMouseFromApp" -defs["igCaptureMouseFromApp"][1]["location"] = "imgui" +defs["igCaptureMouseFromApp"][1]["location"] = "imgui:762" defs["igCaptureMouseFromApp"][1]["namespace"] = "ImGui" defs["igCaptureMouseFromApp"][1]["ov_cimguiname"] = "igCaptureMouseFromApp" defs["igCaptureMouseFromApp"][1]["ret"] = "void" @@ -9507,7 +9525,7 @@ defs["igCheckbox"][1]["call_args"] = "(label,v)" defs["igCheckbox"][1]["cimguiname"] = "igCheckbox" defs["igCheckbox"][1]["defaults"] = {} defs["igCheckbox"][1]["funcname"] = "Checkbox" -defs["igCheckbox"][1]["location"] = "imgui" +defs["igCheckbox"][1]["location"] = "imgui:446" defs["igCheckbox"][1]["namespace"] = "ImGui" defs["igCheckbox"][1]["ov_cimguiname"] = "igCheckbox" defs["igCheckbox"][1]["ret"] = "bool" @@ -9532,7 +9550,7 @@ defs["igCheckboxFlags"][1]["call_args"] = "(label,flags,flags_value)" defs["igCheckboxFlags"][1]["cimguiname"] = "igCheckboxFlags" defs["igCheckboxFlags"][1]["defaults"] = {} defs["igCheckboxFlags"][1]["funcname"] = "CheckboxFlags" -defs["igCheckboxFlags"][1]["location"] = "imgui" +defs["igCheckboxFlags"][1]["location"] = "imgui:447" defs["igCheckboxFlags"][1]["namespace"] = "ImGui" defs["igCheckboxFlags"][1]["ov_cimguiname"] = "igCheckboxFlags" defs["igCheckboxFlags"][1]["ret"] = "bool" @@ -9548,7 +9566,7 @@ defs["igClearActiveID"][1]["call_args"] = "()" defs["igClearActiveID"][1]["cimguiname"] = "igClearActiveID" defs["igClearActiveID"][1]["defaults"] = {} defs["igClearActiveID"][1]["funcname"] = "ClearActiveID" -defs["igClearActiveID"][1]["location"] = "internal" +defs["igClearActiveID"][1]["location"] = "imgui_internal:1835" defs["igClearActiveID"][1]["namespace"] = "ImGui" defs["igClearActiveID"][1]["ov_cimguiname"] = "igClearActiveID" defs["igClearActiveID"][1]["ret"] = "void" @@ -9564,7 +9582,7 @@ defs["igClearDragDrop"][1]["call_args"] = "()" defs["igClearDragDrop"][1]["cimguiname"] = "igClearDragDrop" defs["igClearDragDrop"][1]["defaults"] = {} defs["igClearDragDrop"][1]["funcname"] = "ClearDragDrop" -defs["igClearDragDrop"][1]["location"] = "internal" +defs["igClearDragDrop"][1]["location"] = "imgui_internal:1909" defs["igClearDragDrop"][1]["namespace"] = "ImGui" defs["igClearDragDrop"][1]["ov_cimguiname"] = "igClearDragDrop" defs["igClearDragDrop"][1]["ret"] = "void" @@ -9580,7 +9598,7 @@ defs["igClearIniSettings"][1]["call_args"] = "()" defs["igClearIniSettings"][1]["cimguiname"] = "igClearIniSettings" defs["igClearIniSettings"][1]["defaults"] = {} defs["igClearIniSettings"][1]["funcname"] = "ClearIniSettings" -defs["igClearIniSettings"][1]["location"] = "internal" +defs["igClearIniSettings"][1]["location"] = "imgui_internal:1814" defs["igClearIniSettings"][1]["namespace"] = "ImGui" defs["igClearIniSettings"][1]["ov_cimguiname"] = "igClearIniSettings" defs["igClearIniSettings"][1]["ret"] = "void" @@ -9602,7 +9620,7 @@ defs["igCloseButton"][1]["call_args"] = "(id,pos)" defs["igCloseButton"][1]["cimguiname"] = "igCloseButton" defs["igCloseButton"][1]["defaults"] = {} defs["igCloseButton"][1]["funcname"] = "CloseButton" -defs["igCloseButton"][1]["location"] = "internal" +defs["igCloseButton"][1]["location"] = "imgui_internal:1968" defs["igCloseButton"][1]["namespace"] = "ImGui" defs["igCloseButton"][1]["ov_cimguiname"] = "igCloseButton" defs["igCloseButton"][1]["ret"] = "bool" @@ -9618,7 +9636,7 @@ defs["igCloseCurrentPopup"][1]["call_args"] = "()" defs["igCloseCurrentPopup"][1]["cimguiname"] = "igCloseCurrentPopup" defs["igCloseCurrentPopup"][1]["defaults"] = {} defs["igCloseCurrentPopup"][1]["funcname"] = "CloseCurrentPopup" -defs["igCloseCurrentPopup"][1]["location"] = "imgui" +defs["igCloseCurrentPopup"][1]["location"] = "imgui:624" defs["igCloseCurrentPopup"][1]["namespace"] = "ImGui" defs["igCloseCurrentPopup"][1]["ov_cimguiname"] = "igCloseCurrentPopup" defs["igCloseCurrentPopup"][1]["ret"] = "void" @@ -9640,7 +9658,7 @@ defs["igClosePopupToLevel"][1]["call_args"] = "(remaining,restore_focus_to_windo defs["igClosePopupToLevel"][1]["cimguiname"] = "igClosePopupToLevel" defs["igClosePopupToLevel"][1]["defaults"] = {} defs["igClosePopupToLevel"][1]["funcname"] = "ClosePopupToLevel" -defs["igClosePopupToLevel"][1]["location"] = "internal" +defs["igClosePopupToLevel"][1]["location"] = "imgui_internal:1867" defs["igClosePopupToLevel"][1]["namespace"] = "ImGui" defs["igClosePopupToLevel"][1]["ov_cimguiname"] = "igClosePopupToLevel" defs["igClosePopupToLevel"][1]["ret"] = "void" @@ -9662,7 +9680,7 @@ defs["igClosePopupsOverWindow"][1]["call_args"] = "(ref_window,restore_focus_to_ defs["igClosePopupsOverWindow"][1]["cimguiname"] = "igClosePopupsOverWindow" defs["igClosePopupsOverWindow"][1]["defaults"] = {} defs["igClosePopupsOverWindow"][1]["funcname"] = "ClosePopupsOverWindow" -defs["igClosePopupsOverWindow"][1]["location"] = "internal" +defs["igClosePopupsOverWindow"][1]["location"] = "imgui_internal:1868" defs["igClosePopupsOverWindow"][1]["namespace"] = "ImGui" defs["igClosePopupsOverWindow"][1]["ov_cimguiname"] = "igClosePopupsOverWindow" defs["igClosePopupsOverWindow"][1]["ret"] = "void" @@ -9684,7 +9702,7 @@ defs["igCollapseButton"][1]["call_args"] = "(id,pos)" defs["igCollapseButton"][1]["cimguiname"] = "igCollapseButton" defs["igCollapseButton"][1]["defaults"] = {} defs["igCollapseButton"][1]["funcname"] = "CollapseButton" -defs["igCollapseButton"][1]["location"] = "internal" +defs["igCollapseButton"][1]["location"] = "imgui_internal:1969" defs["igCollapseButton"][1]["namespace"] = "ImGui" defs["igCollapseButton"][1]["ov_cimguiname"] = "igCollapseButton" defs["igCollapseButton"][1]["ret"] = "bool" @@ -9707,7 +9725,7 @@ defs["igCollapsingHeader"][1]["cimguiname"] = "igCollapsingHeader" defs["igCollapsingHeader"][1]["defaults"] = {} defs["igCollapsingHeader"][1]["defaults"]["flags"] = "0" defs["igCollapsingHeader"][1]["funcname"] = "CollapsingHeader" -defs["igCollapsingHeader"][1]["location"] = "imgui" +defs["igCollapsingHeader"][1]["location"] = "imgui:551" defs["igCollapsingHeader"][1]["namespace"] = "ImGui" defs["igCollapsingHeader"][1]["ov_cimguiname"] = "igCollapsingHeaderTreeNodeFlags" defs["igCollapsingHeader"][1]["ret"] = "bool" @@ -9731,7 +9749,7 @@ defs["igCollapsingHeader"][2]["cimguiname"] = "igCollapsingHeader" defs["igCollapsingHeader"][2]["defaults"] = {} defs["igCollapsingHeader"][2]["defaults"]["flags"] = "0" defs["igCollapsingHeader"][2]["funcname"] = "CollapsingHeader" -defs["igCollapsingHeader"][2]["location"] = "imgui" +defs["igCollapsingHeader"][2]["location"] = "imgui:552" defs["igCollapsingHeader"][2]["namespace"] = "ImGui" defs["igCollapsingHeader"][2]["ov_cimguiname"] = "igCollapsingHeaderBoolPtr" defs["igCollapsingHeader"][2]["ret"] = "bool" @@ -9762,7 +9780,7 @@ defs["igColorButton"][1]["defaults"] = {} defs["igColorButton"][1]["defaults"]["flags"] = "0" defs["igColorButton"][1]["defaults"]["size"] = "ImVec2(0,0)" defs["igColorButton"][1]["funcname"] = "ColorButton" -defs["igColorButton"][1]["location"] = "imgui" +defs["igColorButton"][1]["location"] = "imgui:532" defs["igColorButton"][1]["namespace"] = "ImGui" defs["igColorButton"][1]["ov_cimguiname"] = "igColorButton" defs["igColorButton"][1]["ret"] = "bool" @@ -9781,7 +9799,7 @@ defs["igColorConvertFloat4ToU32"][1]["call_args"] = "(in)" defs["igColorConvertFloat4ToU32"][1]["cimguiname"] = "igColorConvertFloat4ToU32" defs["igColorConvertFloat4ToU32"][1]["defaults"] = {} defs["igColorConvertFloat4ToU32"][1]["funcname"] = "ColorConvertFloat4ToU32" -defs["igColorConvertFloat4ToU32"][1]["location"] = "imgui" +defs["igColorConvertFloat4ToU32"][1]["location"] = "imgui:730" defs["igColorConvertFloat4ToU32"][1]["namespace"] = "ImGui" defs["igColorConvertFloat4ToU32"][1]["ov_cimguiname"] = "igColorConvertFloat4ToU32" defs["igColorConvertFloat4ToU32"][1]["ret"] = "ImU32" @@ -9818,7 +9836,7 @@ defs["igColorConvertHSVtoRGB"][1]["call_args"] = "(h,s,v,*out_r,*out_g,*out_b)" defs["igColorConvertHSVtoRGB"][1]["cimguiname"] = "igColorConvertHSVtoRGB" defs["igColorConvertHSVtoRGB"][1]["defaults"] = {} defs["igColorConvertHSVtoRGB"][1]["funcname"] = "ColorConvertHSVtoRGB" -defs["igColorConvertHSVtoRGB"][1]["location"] = "imgui" +defs["igColorConvertHSVtoRGB"][1]["location"] = "imgui:732" defs["igColorConvertHSVtoRGB"][1]["namespace"] = "ImGui" defs["igColorConvertHSVtoRGB"][1]["ov_cimguiname"] = "igColorConvertHSVtoRGB" defs["igColorConvertHSVtoRGB"][1]["ret"] = "void" @@ -9855,7 +9873,7 @@ defs["igColorConvertRGBtoHSV"][1]["call_args"] = "(r,g,b,*out_h,*out_s,*out_v)" defs["igColorConvertRGBtoHSV"][1]["cimguiname"] = "igColorConvertRGBtoHSV" defs["igColorConvertRGBtoHSV"][1]["defaults"] = {} defs["igColorConvertRGBtoHSV"][1]["funcname"] = "ColorConvertRGBtoHSV" -defs["igColorConvertRGBtoHSV"][1]["location"] = "imgui" +defs["igColorConvertRGBtoHSV"][1]["location"] = "imgui:731" defs["igColorConvertRGBtoHSV"][1]["namespace"] = "ImGui" defs["igColorConvertRGBtoHSV"][1]["ov_cimguiname"] = "igColorConvertRGBtoHSV" defs["igColorConvertRGBtoHSV"][1]["ret"] = "void" @@ -9877,7 +9895,7 @@ defs["igColorConvertU32ToFloat4"][1]["call_args"] = "(in)" defs["igColorConvertU32ToFloat4"][1]["cimguiname"] = "igColorConvertU32ToFloat4" defs["igColorConvertU32ToFloat4"][1]["defaults"] = {} defs["igColorConvertU32ToFloat4"][1]["funcname"] = "ColorConvertU32ToFloat4" -defs["igColorConvertU32ToFloat4"][1]["location"] = "imgui" +defs["igColorConvertU32ToFloat4"][1]["location"] = "imgui:729" defs["igColorConvertU32ToFloat4"][1]["namespace"] = "ImGui" defs["igColorConvertU32ToFloat4"][1]["nonUDT"] = 1 defs["igColorConvertU32ToFloat4"][1]["ov_cimguiname"] = "igColorConvertU32ToFloat4" @@ -9904,7 +9922,7 @@ defs["igColorEdit3"][1]["cimguiname"] = "igColorEdit3" defs["igColorEdit3"][1]["defaults"] = {} defs["igColorEdit3"][1]["defaults"]["flags"] = "0" defs["igColorEdit3"][1]["funcname"] = "ColorEdit3" -defs["igColorEdit3"][1]["location"] = "imgui" +defs["igColorEdit3"][1]["location"] = "imgui:528" defs["igColorEdit3"][1]["namespace"] = "ImGui" defs["igColorEdit3"][1]["ov_cimguiname"] = "igColorEdit3" defs["igColorEdit3"][1]["ret"] = "bool" @@ -9930,7 +9948,7 @@ defs["igColorEdit4"][1]["cimguiname"] = "igColorEdit4" defs["igColorEdit4"][1]["defaults"] = {} defs["igColorEdit4"][1]["defaults"]["flags"] = "0" defs["igColorEdit4"][1]["funcname"] = "ColorEdit4" -defs["igColorEdit4"][1]["location"] = "imgui" +defs["igColorEdit4"][1]["location"] = "imgui:529" defs["igColorEdit4"][1]["namespace"] = "ImGui" defs["igColorEdit4"][1]["ov_cimguiname"] = "igColorEdit4" defs["igColorEdit4"][1]["ret"] = "bool" @@ -9952,7 +9970,7 @@ defs["igColorEditOptionsPopup"][1]["call_args"] = "(col,flags)" defs["igColorEditOptionsPopup"][1]["cimguiname"] = "igColorEditOptionsPopup" defs["igColorEditOptionsPopup"][1]["defaults"] = {} defs["igColorEditOptionsPopup"][1]["funcname"] = "ColorEditOptionsPopup" -defs["igColorEditOptionsPopup"][1]["location"] = "internal" +defs["igColorEditOptionsPopup"][1]["location"] = "imgui_internal:2013" defs["igColorEditOptionsPopup"][1]["namespace"] = "ImGui" defs["igColorEditOptionsPopup"][1]["ov_cimguiname"] = "igColorEditOptionsPopup" defs["igColorEditOptionsPopup"][1]["ret"] = "void" @@ -9978,7 +9996,7 @@ defs["igColorPicker3"][1]["cimguiname"] = "igColorPicker3" defs["igColorPicker3"][1]["defaults"] = {} defs["igColorPicker3"][1]["defaults"]["flags"] = "0" defs["igColorPicker3"][1]["funcname"] = "ColorPicker3" -defs["igColorPicker3"][1]["location"] = "imgui" +defs["igColorPicker3"][1]["location"] = "imgui:530" defs["igColorPicker3"][1]["namespace"] = "ImGui" defs["igColorPicker3"][1]["ov_cimguiname"] = "igColorPicker3" defs["igColorPicker3"][1]["ret"] = "bool" @@ -10006,9 +10024,9 @@ defs["igColorPicker4"][1]["call_args"] = "(label,col,flags,ref_col)" defs["igColorPicker4"][1]["cimguiname"] = "igColorPicker4" defs["igColorPicker4"][1]["defaults"] = {} defs["igColorPicker4"][1]["defaults"]["flags"] = "0" -defs["igColorPicker4"][1]["defaults"]["ref_col"] = "((void*)0)" +defs["igColorPicker4"][1]["defaults"]["ref_col"] = "NULL" defs["igColorPicker4"][1]["funcname"] = "ColorPicker4" -defs["igColorPicker4"][1]["location"] = "imgui" +defs["igColorPicker4"][1]["location"] = "imgui:531" defs["igColorPicker4"][1]["namespace"] = "ImGui" defs["igColorPicker4"][1]["ov_cimguiname"] = "igColorPicker4" defs["igColorPicker4"][1]["ret"] = "bool" @@ -10030,7 +10048,7 @@ defs["igColorPickerOptionsPopup"][1]["call_args"] = "(ref_col,flags)" defs["igColorPickerOptionsPopup"][1]["cimguiname"] = "igColorPickerOptionsPopup" defs["igColorPickerOptionsPopup"][1]["defaults"] = {} defs["igColorPickerOptionsPopup"][1]["funcname"] = "ColorPickerOptionsPopup" -defs["igColorPickerOptionsPopup"][1]["location"] = "internal" +defs["igColorPickerOptionsPopup"][1]["location"] = "imgui_internal:2014" defs["igColorPickerOptionsPopup"][1]["namespace"] = "ImGui" defs["igColorPickerOptionsPopup"][1]["ov_cimguiname"] = "igColorPickerOptionsPopup" defs["igColorPickerOptionsPopup"][1]["ret"] = "void" @@ -10055,7 +10073,7 @@ defs["igColorTooltip"][1]["call_args"] = "(text,col,flags)" defs["igColorTooltip"][1]["cimguiname"] = "igColorTooltip" defs["igColorTooltip"][1]["defaults"] = {} defs["igColorTooltip"][1]["funcname"] = "ColorTooltip" -defs["igColorTooltip"][1]["location"] = "internal" +defs["igColorTooltip"][1]["location"] = "imgui_internal:2012" defs["igColorTooltip"][1]["namespace"] = "ImGui" defs["igColorTooltip"][1]["ov_cimguiname"] = "igColorTooltip" defs["igColorTooltip"][1]["ret"] = "void" @@ -10081,9 +10099,9 @@ defs["igColumns"][1]["cimguiname"] = "igColumns" defs["igColumns"][1]["defaults"] = {} defs["igColumns"][1]["defaults"]["border"] = "true" defs["igColumns"][1]["defaults"]["count"] = "1" -defs["igColumns"][1]["defaults"]["id"] = "((void*)0)" +defs["igColumns"][1]["defaults"]["id"] = "NULL" defs["igColumns"][1]["funcname"] = "Columns" -defs["igColumns"][1]["location"] = "imgui" +defs["igColumns"][1]["location"] = "imgui:644" defs["igColumns"][1]["namespace"] = "ImGui" defs["igColumns"][1]["ov_cimguiname"] = "igColumns" defs["igColumns"][1]["ret"] = "void" @@ -10115,7 +10133,7 @@ defs["igCombo"][1]["cimguiname"] = "igCombo" defs["igCombo"][1]["defaults"] = {} defs["igCombo"][1]["defaults"]["popup_max_height_in_items"] = "-1" defs["igCombo"][1]["funcname"] = "Combo" -defs["igCombo"][1]["location"] = "imgui" +defs["igCombo"][1]["location"] = "imgui:458" defs["igCombo"][1]["namespace"] = "ImGui" defs["igCombo"][1]["ov_cimguiname"] = "igComboStr_arr" defs["igCombo"][1]["ret"] = "bool" @@ -10142,7 +10160,7 @@ defs["igCombo"][2]["cimguiname"] = "igCombo" defs["igCombo"][2]["defaults"] = {} defs["igCombo"][2]["defaults"]["popup_max_height_in_items"] = "-1" defs["igCombo"][2]["funcname"] = "Combo" -defs["igCombo"][2]["location"] = "imgui" +defs["igCombo"][2]["location"] = "imgui:459" defs["igCombo"][2]["namespace"] = "ImGui" defs["igCombo"][2]["ov_cimguiname"] = "igComboStr" defs["igCombo"][2]["ret"] = "bool" @@ -10177,7 +10195,7 @@ defs["igCombo"][3]["cimguiname"] = "igCombo" defs["igCombo"][3]["defaults"] = {} defs["igCombo"][3]["defaults"]["popup_max_height_in_items"] = "-1" defs["igCombo"][3]["funcname"] = "Combo" -defs["igCombo"][3]["location"] = "imgui" +defs["igCombo"][3]["location"] = "imgui:460" defs["igCombo"][3]["namespace"] = "ImGui" defs["igCombo"][3]["ov_cimguiname"] = "igComboFnBoolPtr" defs["igCombo"][3]["ret"] = "bool" @@ -10197,9 +10215,9 @@ defs["igCreateContext"][1]["argsoriginal"] = "(ImFontAtlas* shared_font_atlas=(( defs["igCreateContext"][1]["call_args"] = "(shared_font_atlas)" defs["igCreateContext"][1]["cimguiname"] = "igCreateContext" defs["igCreateContext"][1]["defaults"] = {} -defs["igCreateContext"][1]["defaults"]["shared_font_atlas"] = "((void*)0)" +defs["igCreateContext"][1]["defaults"]["shared_font_atlas"] = "NULL" defs["igCreateContext"][1]["funcname"] = "CreateContext" -defs["igCreateContext"][1]["location"] = "imgui" +defs["igCreateContext"][1]["location"] = "imgui:244" defs["igCreateContext"][1]["namespace"] = "ImGui" defs["igCreateContext"][1]["ov_cimguiname"] = "igCreateContext" defs["igCreateContext"][1]["ret"] = "ImGuiContext*" @@ -10218,7 +10236,7 @@ defs["igCreateNewWindowSettings"][1]["call_args"] = "(name)" defs["igCreateNewWindowSettings"][1]["cimguiname"] = "igCreateNewWindowSettings" defs["igCreateNewWindowSettings"][1]["defaults"] = {} defs["igCreateNewWindowSettings"][1]["funcname"] = "CreateNewWindowSettings" -defs["igCreateNewWindowSettings"][1]["location"] = "internal" +defs["igCreateNewWindowSettings"][1]["location"] = "imgui_internal:1815" defs["igCreateNewWindowSettings"][1]["namespace"] = "ImGui" defs["igCreateNewWindowSettings"][1]["ov_cimguiname"] = "igCreateNewWindowSettings" defs["igCreateNewWindowSettings"][1]["ret"] = "ImGuiWindowSettings*" @@ -10249,7 +10267,7 @@ defs["igDataTypeApplyOp"][1]["call_args"] = "(data_type,op,output,arg_1,arg_2)" defs["igDataTypeApplyOp"][1]["cimguiname"] = "igDataTypeApplyOp" defs["igDataTypeApplyOp"][1]["defaults"] = {} defs["igDataTypeApplyOp"][1]["funcname"] = "DataTypeApplyOp" -defs["igDataTypeApplyOp"][1]["location"] = "internal" +defs["igDataTypeApplyOp"][1]["location"] = "imgui_internal:2000" defs["igDataTypeApplyOp"][1]["namespace"] = "ImGui" defs["igDataTypeApplyOp"][1]["ov_cimguiname"] = "igDataTypeApplyOp" defs["igDataTypeApplyOp"][1]["ret"] = "void" @@ -10280,7 +10298,7 @@ defs["igDataTypeApplyOpFromText"][1]["call_args"] = "(buf,initial_value_buf,data defs["igDataTypeApplyOpFromText"][1]["cimguiname"] = "igDataTypeApplyOpFromText" defs["igDataTypeApplyOpFromText"][1]["defaults"] = {} defs["igDataTypeApplyOpFromText"][1]["funcname"] = "DataTypeApplyOpFromText" -defs["igDataTypeApplyOpFromText"][1]["location"] = "internal" +defs["igDataTypeApplyOpFromText"][1]["location"] = "imgui_internal:2001" defs["igDataTypeApplyOpFromText"][1]["namespace"] = "ImGui" defs["igDataTypeApplyOpFromText"][1]["ov_cimguiname"] = "igDataTypeApplyOpFromText" defs["igDataTypeApplyOpFromText"][1]["ret"] = "bool" @@ -10308,7 +10326,7 @@ defs["igDataTypeClamp"][1]["call_args"] = "(data_type,p_data,p_min,p_max)" defs["igDataTypeClamp"][1]["cimguiname"] = "igDataTypeClamp" defs["igDataTypeClamp"][1]["defaults"] = {} defs["igDataTypeClamp"][1]["funcname"] = "DataTypeClamp" -defs["igDataTypeClamp"][1]["location"] = "internal" +defs["igDataTypeClamp"][1]["location"] = "imgui_internal:2002" defs["igDataTypeClamp"][1]["namespace"] = "ImGui" defs["igDataTypeClamp"][1]["ov_cimguiname"] = "igDataTypeClamp" defs["igDataTypeClamp"][1]["ret"] = "bool" @@ -10339,7 +10357,7 @@ defs["igDataTypeFormatString"][1]["call_args"] = "(buf,buf_size,data_type,p_data defs["igDataTypeFormatString"][1]["cimguiname"] = "igDataTypeFormatString" defs["igDataTypeFormatString"][1]["defaults"] = {} defs["igDataTypeFormatString"][1]["funcname"] = "DataTypeFormatString" -defs["igDataTypeFormatString"][1]["location"] = "internal" +defs["igDataTypeFormatString"][1]["location"] = "imgui_internal:1999" defs["igDataTypeFormatString"][1]["namespace"] = "ImGui" defs["igDataTypeFormatString"][1]["ov_cimguiname"] = "igDataTypeFormatString" defs["igDataTypeFormatString"][1]["ret"] = "int" @@ -10358,7 +10376,7 @@ defs["igDataTypeGetInfo"][1]["call_args"] = "(data_type)" defs["igDataTypeGetInfo"][1]["cimguiname"] = "igDataTypeGetInfo" defs["igDataTypeGetInfo"][1]["defaults"] = {} defs["igDataTypeGetInfo"][1]["funcname"] = "DataTypeGetInfo" -defs["igDataTypeGetInfo"][1]["location"] = "internal" +defs["igDataTypeGetInfo"][1]["location"] = "imgui_internal:1998" defs["igDataTypeGetInfo"][1]["namespace"] = "ImGui" defs["igDataTypeGetInfo"][1]["ov_cimguiname"] = "igDataTypeGetInfo" defs["igDataTypeGetInfo"][1]["ret"] = "const ImGuiDataTypeInfo*" @@ -10395,7 +10413,7 @@ defs["igDebugCheckVersionAndDataLayout"][1]["call_args"] = "(version_str,sz_io,s defs["igDebugCheckVersionAndDataLayout"][1]["cimguiname"] = "igDebugCheckVersionAndDataLayout" defs["igDebugCheckVersionAndDataLayout"][1]["defaults"] = {} defs["igDebugCheckVersionAndDataLayout"][1]["funcname"] = "DebugCheckVersionAndDataLayout" -defs["igDebugCheckVersionAndDataLayout"][1]["location"] = "imgui" +defs["igDebugCheckVersionAndDataLayout"][1]["location"] = "imgui:778" defs["igDebugCheckVersionAndDataLayout"][1]["namespace"] = "ImGui" defs["igDebugCheckVersionAndDataLayout"][1]["ov_cimguiname"] = "igDebugCheckVersionAndDataLayout" defs["igDebugCheckVersionAndDataLayout"][1]["ret"] = "bool" @@ -10413,9 +10431,9 @@ defs["igDebugDrawItemRect"][1]["argsoriginal"] = "(ImU32 col=(((ImU32)(255)<<24) defs["igDebugDrawItemRect"][1]["call_args"] = "(col)" defs["igDebugDrawItemRect"][1]["cimguiname"] = "igDebugDrawItemRect" defs["igDebugDrawItemRect"][1]["defaults"] = {} -defs["igDebugDrawItemRect"][1]["defaults"]["col"] = "(((ImU32)(255)<<24)|((ImU32)(0)<<16)|((ImU32)(0)<<8)|((ImU32)(255)<<0))" +defs["igDebugDrawItemRect"][1]["defaults"]["col"] = "4278190335" defs["igDebugDrawItemRect"][1]["funcname"] = "DebugDrawItemRect" -defs["igDebugDrawItemRect"][1]["location"] = "internal" +defs["igDebugDrawItemRect"][1]["location"] = "imgui_internal:2028" defs["igDebugDrawItemRect"][1]["namespace"] = "ImGui" defs["igDebugDrawItemRect"][1]["ov_cimguiname"] = "igDebugDrawItemRect" defs["igDebugDrawItemRect"][1]["ret"] = "void" @@ -10431,7 +10449,7 @@ defs["igDebugStartItemPicker"][1]["call_args"] = "()" defs["igDebugStartItemPicker"][1]["cimguiname"] = "igDebugStartItemPicker" defs["igDebugStartItemPicker"][1]["defaults"] = {} defs["igDebugStartItemPicker"][1]["funcname"] = "DebugStartItemPicker" -defs["igDebugStartItemPicker"][1]["location"] = "internal" +defs["igDebugStartItemPicker"][1]["location"] = "imgui_internal:2029" defs["igDebugStartItemPicker"][1]["namespace"] = "ImGui" defs["igDebugStartItemPicker"][1]["ov_cimguiname"] = "igDebugStartItemPicker" defs["igDebugStartItemPicker"][1]["ret"] = "void" @@ -10449,9 +10467,9 @@ defs["igDestroyContext"][1]["argsoriginal"] = "(ImGuiContext* ctx=((void*)0))" defs["igDestroyContext"][1]["call_args"] = "(ctx)" defs["igDestroyContext"][1]["cimguiname"] = "igDestroyContext" defs["igDestroyContext"][1]["defaults"] = {} -defs["igDestroyContext"][1]["defaults"]["ctx"] = "((void*)0)" +defs["igDestroyContext"][1]["defaults"]["ctx"] = "NULL" defs["igDestroyContext"][1]["funcname"] = "DestroyContext" -defs["igDestroyContext"][1]["location"] = "imgui" +defs["igDestroyContext"][1]["location"] = "imgui:245" defs["igDestroyContext"][1]["namespace"] = "ImGui" defs["igDestroyContext"][1]["ov_cimguiname"] = "igDestroyContext" defs["igDestroyContext"][1]["ret"] = "void" @@ -10491,7 +10509,7 @@ defs["igDragBehavior"][1]["call_args"] = "(id,data_type,p_v,v_speed,p_min,p_max, defs["igDragBehavior"][1]["cimguiname"] = "igDragBehavior" defs["igDragBehavior"][1]["defaults"] = {} defs["igDragBehavior"][1]["funcname"] = "DragBehavior" -defs["igDragBehavior"][1]["location"] = "internal" +defs["igDragBehavior"][1]["location"] = "imgui_internal:1981" defs["igDragBehavior"][1]["namespace"] = "ImGui" defs["igDragBehavior"][1]["ov_cimguiname"] = "igDragBehavior" defs["igDragBehavior"][1]["ret"] = "bool" @@ -10533,7 +10551,7 @@ defs["igDragFloat"][1]["defaults"]["v_max"] = "0.0f" defs["igDragFloat"][1]["defaults"]["v_min"] = "0.0f" defs["igDragFloat"][1]["defaults"]["v_speed"] = "1.0f" defs["igDragFloat"][1]["funcname"] = "DragFloat" -defs["igDragFloat"][1]["location"] = "imgui" +defs["igDragFloat"][1]["location"] = "imgui:473" defs["igDragFloat"][1]["namespace"] = "ImGui" defs["igDragFloat"][1]["ov_cimguiname"] = "igDragFloat" defs["igDragFloat"][1]["ret"] = "bool" @@ -10575,7 +10593,7 @@ defs["igDragFloat2"][1]["defaults"]["v_max"] = "0.0f" defs["igDragFloat2"][1]["defaults"]["v_min"] = "0.0f" defs["igDragFloat2"][1]["defaults"]["v_speed"] = "1.0f" defs["igDragFloat2"][1]["funcname"] = "DragFloat2" -defs["igDragFloat2"][1]["location"] = "imgui" +defs["igDragFloat2"][1]["location"] = "imgui:474" defs["igDragFloat2"][1]["namespace"] = "ImGui" defs["igDragFloat2"][1]["ov_cimguiname"] = "igDragFloat2" defs["igDragFloat2"][1]["ret"] = "bool" @@ -10617,7 +10635,7 @@ defs["igDragFloat3"][1]["defaults"]["v_max"] = "0.0f" defs["igDragFloat3"][1]["defaults"]["v_min"] = "0.0f" defs["igDragFloat3"][1]["defaults"]["v_speed"] = "1.0f" defs["igDragFloat3"][1]["funcname"] = "DragFloat3" -defs["igDragFloat3"][1]["location"] = "imgui" +defs["igDragFloat3"][1]["location"] = "imgui:475" defs["igDragFloat3"][1]["namespace"] = "ImGui" defs["igDragFloat3"][1]["ov_cimguiname"] = "igDragFloat3" defs["igDragFloat3"][1]["ret"] = "bool" @@ -10659,7 +10677,7 @@ defs["igDragFloat4"][1]["defaults"]["v_max"] = "0.0f" defs["igDragFloat4"][1]["defaults"]["v_min"] = "0.0f" defs["igDragFloat4"][1]["defaults"]["v_speed"] = "1.0f" defs["igDragFloat4"][1]["funcname"] = "DragFloat4" -defs["igDragFloat4"][1]["location"] = "imgui" +defs["igDragFloat4"][1]["location"] = "imgui:476" defs["igDragFloat4"][1]["namespace"] = "ImGui" defs["igDragFloat4"][1]["ov_cimguiname"] = "igDragFloat4" defs["igDragFloat4"][1]["ret"] = "bool" @@ -10703,12 +10721,12 @@ defs["igDragFloatRange2"][1]["cimguiname"] = "igDragFloatRange2" defs["igDragFloatRange2"][1]["defaults"] = {} defs["igDragFloatRange2"][1]["defaults"]["flags"] = "0" defs["igDragFloatRange2"][1]["defaults"]["format"] = "\"%.3f\"" -defs["igDragFloatRange2"][1]["defaults"]["format_max"] = "((void*)0)" +defs["igDragFloatRange2"][1]["defaults"]["format_max"] = "NULL" defs["igDragFloatRange2"][1]["defaults"]["v_max"] = "0.0f" defs["igDragFloatRange2"][1]["defaults"]["v_min"] = "0.0f" defs["igDragFloatRange2"][1]["defaults"]["v_speed"] = "1.0f" defs["igDragFloatRange2"][1]["funcname"] = "DragFloatRange2" -defs["igDragFloatRange2"][1]["location"] = "imgui" +defs["igDragFloatRange2"][1]["location"] = "imgui:477" defs["igDragFloatRange2"][1]["namespace"] = "ImGui" defs["igDragFloatRange2"][1]["ov_cimguiname"] = "igDragFloatRange2" defs["igDragFloatRange2"][1]["ret"] = "bool" @@ -10750,7 +10768,7 @@ defs["igDragInt"][1]["defaults"]["v_max"] = "0" defs["igDragInt"][1]["defaults"]["v_min"] = "0" defs["igDragInt"][1]["defaults"]["v_speed"] = "1.0f" defs["igDragInt"][1]["funcname"] = "DragInt" -defs["igDragInt"][1]["location"] = "imgui" +defs["igDragInt"][1]["location"] = "imgui:478" defs["igDragInt"][1]["namespace"] = "ImGui" defs["igDragInt"][1]["ov_cimguiname"] = "igDragInt" defs["igDragInt"][1]["ret"] = "bool" @@ -10792,7 +10810,7 @@ defs["igDragInt2"][1]["defaults"]["v_max"] = "0" defs["igDragInt2"][1]["defaults"]["v_min"] = "0" defs["igDragInt2"][1]["defaults"]["v_speed"] = "1.0f" defs["igDragInt2"][1]["funcname"] = "DragInt2" -defs["igDragInt2"][1]["location"] = "imgui" +defs["igDragInt2"][1]["location"] = "imgui:479" defs["igDragInt2"][1]["namespace"] = "ImGui" defs["igDragInt2"][1]["ov_cimguiname"] = "igDragInt2" defs["igDragInt2"][1]["ret"] = "bool" @@ -10834,7 +10852,7 @@ defs["igDragInt3"][1]["defaults"]["v_max"] = "0" defs["igDragInt3"][1]["defaults"]["v_min"] = "0" defs["igDragInt3"][1]["defaults"]["v_speed"] = "1.0f" defs["igDragInt3"][1]["funcname"] = "DragInt3" -defs["igDragInt3"][1]["location"] = "imgui" +defs["igDragInt3"][1]["location"] = "imgui:480" defs["igDragInt3"][1]["namespace"] = "ImGui" defs["igDragInt3"][1]["ov_cimguiname"] = "igDragInt3" defs["igDragInt3"][1]["ret"] = "bool" @@ -10876,7 +10894,7 @@ defs["igDragInt4"][1]["defaults"]["v_max"] = "0" defs["igDragInt4"][1]["defaults"]["v_min"] = "0" defs["igDragInt4"][1]["defaults"]["v_speed"] = "1.0f" defs["igDragInt4"][1]["funcname"] = "DragInt4" -defs["igDragInt4"][1]["location"] = "imgui" +defs["igDragInt4"][1]["location"] = "imgui:481" defs["igDragInt4"][1]["namespace"] = "ImGui" defs["igDragInt4"][1]["ov_cimguiname"] = "igDragInt4" defs["igDragInt4"][1]["ret"] = "bool" @@ -10920,12 +10938,12 @@ defs["igDragIntRange2"][1]["cimguiname"] = "igDragIntRange2" defs["igDragIntRange2"][1]["defaults"] = {} defs["igDragIntRange2"][1]["defaults"]["flags"] = "0" defs["igDragIntRange2"][1]["defaults"]["format"] = "\"%d\"" -defs["igDragIntRange2"][1]["defaults"]["format_max"] = "((void*)0)" +defs["igDragIntRange2"][1]["defaults"]["format_max"] = "NULL" defs["igDragIntRange2"][1]["defaults"]["v_max"] = "0" defs["igDragIntRange2"][1]["defaults"]["v_min"] = "0" defs["igDragIntRange2"][1]["defaults"]["v_speed"] = "1.0f" defs["igDragIntRange2"][1]["funcname"] = "DragIntRange2" -defs["igDragIntRange2"][1]["location"] = "imgui" +defs["igDragIntRange2"][1]["location"] = "imgui:482" defs["igDragIntRange2"][1]["namespace"] = "ImGui" defs["igDragIntRange2"][1]["ov_cimguiname"] = "igDragIntRange2" defs["igDragIntRange2"][1]["ret"] = "bool" @@ -10965,11 +10983,11 @@ defs["igDragScalar"][1]["call_args"] = "(label,data_type,p_data,v_speed,p_min,p_ defs["igDragScalar"][1]["cimguiname"] = "igDragScalar" defs["igDragScalar"][1]["defaults"] = {} defs["igDragScalar"][1]["defaults"]["flags"] = "0" -defs["igDragScalar"][1]["defaults"]["format"] = "((void*)0)" -defs["igDragScalar"][1]["defaults"]["p_max"] = "((void*)0)" -defs["igDragScalar"][1]["defaults"]["p_min"] = "((void*)0)" +defs["igDragScalar"][1]["defaults"]["format"] = "NULL" +defs["igDragScalar"][1]["defaults"]["p_max"] = "NULL" +defs["igDragScalar"][1]["defaults"]["p_min"] = "NULL" defs["igDragScalar"][1]["funcname"] = "DragScalar" -defs["igDragScalar"][1]["location"] = "imgui" +defs["igDragScalar"][1]["location"] = "imgui:483" defs["igDragScalar"][1]["namespace"] = "ImGui" defs["igDragScalar"][1]["ov_cimguiname"] = "igDragScalar" defs["igDragScalar"][1]["ret"] = "bool" @@ -11012,11 +11030,11 @@ defs["igDragScalarN"][1]["call_args"] = "(label,data_type,p_data,components,v_sp defs["igDragScalarN"][1]["cimguiname"] = "igDragScalarN" defs["igDragScalarN"][1]["defaults"] = {} defs["igDragScalarN"][1]["defaults"]["flags"] = "0" -defs["igDragScalarN"][1]["defaults"]["format"] = "((void*)0)" -defs["igDragScalarN"][1]["defaults"]["p_max"] = "((void*)0)" -defs["igDragScalarN"][1]["defaults"]["p_min"] = "((void*)0)" +defs["igDragScalarN"][1]["defaults"]["format"] = "NULL" +defs["igDragScalarN"][1]["defaults"]["p_max"] = "NULL" +defs["igDragScalarN"][1]["defaults"]["p_min"] = "NULL" defs["igDragScalarN"][1]["funcname"] = "DragScalarN" -defs["igDragScalarN"][1]["location"] = "imgui" +defs["igDragScalarN"][1]["location"] = "imgui:484" defs["igDragScalarN"][1]["namespace"] = "ImGui" defs["igDragScalarN"][1]["ov_cimguiname"] = "igDragScalarN" defs["igDragScalarN"][1]["ret"] = "bool" @@ -11035,7 +11053,7 @@ defs["igDummy"][1]["call_args"] = "(size)" defs["igDummy"][1]["cimguiname"] = "igDummy" defs["igDummy"][1]["defaults"] = {} defs["igDummy"][1]["funcname"] = "Dummy" -defs["igDummy"][1]["location"] = "imgui" +defs["igDummy"][1]["location"] = "imgui:386" defs["igDummy"][1]["namespace"] = "ImGui" defs["igDummy"][1]["ov_cimguiname"] = "igDummy" defs["igDummy"][1]["ret"] = "void" @@ -11051,7 +11069,7 @@ defs["igEnd"][1]["call_args"] = "()" defs["igEnd"][1]["cimguiname"] = "igEnd" defs["igEnd"][1]["defaults"] = {} defs["igEnd"][1]["funcname"] = "End" -defs["igEnd"][1]["location"] = "imgui" +defs["igEnd"][1]["location"] = "imgui:285" defs["igEnd"][1]["namespace"] = "ImGui" defs["igEnd"][1]["ov_cimguiname"] = "igEnd" defs["igEnd"][1]["ret"] = "void" @@ -11067,7 +11085,7 @@ defs["igEndChild"][1]["call_args"] = "()" defs["igEndChild"][1]["cimguiname"] = "igEndChild" defs["igEndChild"][1]["defaults"] = {} defs["igEndChild"][1]["funcname"] = "EndChild" -defs["igEndChild"][1]["location"] = "imgui" +defs["igEndChild"][1]["location"] = "imgui:294" defs["igEndChild"][1]["namespace"] = "ImGui" defs["igEndChild"][1]["ov_cimguiname"] = "igEndChild" defs["igEndChild"][1]["ret"] = "void" @@ -11083,7 +11101,7 @@ defs["igEndChildFrame"][1]["call_args"] = "()" defs["igEndChildFrame"][1]["cimguiname"] = "igEndChildFrame" defs["igEndChildFrame"][1]["defaults"] = {} defs["igEndChildFrame"][1]["funcname"] = "EndChildFrame" -defs["igEndChildFrame"][1]["location"] = "imgui" +defs["igEndChildFrame"][1]["location"] = "imgui:723" defs["igEndChildFrame"][1]["namespace"] = "ImGui" defs["igEndChildFrame"][1]["ov_cimguiname"] = "igEndChildFrame" defs["igEndChildFrame"][1]["ret"] = "void" @@ -11099,7 +11117,7 @@ defs["igEndColumns"][1]["call_args"] = "()" defs["igEndColumns"][1]["cimguiname"] = "igEndColumns" defs["igEndColumns"][1]["defaults"] = {} defs["igEndColumns"][1]["funcname"] = "EndColumns" -defs["igEndColumns"][1]["location"] = "internal" +defs["igEndColumns"][1]["location"] = "imgui_internal:1915" defs["igEndColumns"][1]["namespace"] = "ImGui" defs["igEndColumns"][1]["ov_cimguiname"] = "igEndColumns" defs["igEndColumns"][1]["ret"] = "void" @@ -11115,7 +11133,7 @@ defs["igEndCombo"][1]["call_args"] = "()" defs["igEndCombo"][1]["cimguiname"] = "igEndCombo" defs["igEndCombo"][1]["defaults"] = {} defs["igEndCombo"][1]["funcname"] = "EndCombo" -defs["igEndCombo"][1]["location"] = "imgui" +defs["igEndCombo"][1]["location"] = "imgui:457" defs["igEndCombo"][1]["namespace"] = "ImGui" defs["igEndCombo"][1]["ov_cimguiname"] = "igEndCombo" defs["igEndCombo"][1]["ret"] = "void" @@ -11131,7 +11149,7 @@ defs["igEndDragDropSource"][1]["call_args"] = "()" defs["igEndDragDropSource"][1]["cimguiname"] = "igEndDragDropSource" defs["igEndDragDropSource"][1]["defaults"] = {} defs["igEndDragDropSource"][1]["funcname"] = "EndDragDropSource" -defs["igEndDragDropSource"][1]["location"] = "imgui" +defs["igEndDragDropSource"][1]["location"] = "imgui:674" defs["igEndDragDropSource"][1]["namespace"] = "ImGui" defs["igEndDragDropSource"][1]["ov_cimguiname"] = "igEndDragDropSource" defs["igEndDragDropSource"][1]["ret"] = "void" @@ -11147,7 +11165,7 @@ defs["igEndDragDropTarget"][1]["call_args"] = "()" defs["igEndDragDropTarget"][1]["cimguiname"] = "igEndDragDropTarget" defs["igEndDragDropTarget"][1]["defaults"] = {} defs["igEndDragDropTarget"][1]["funcname"] = "EndDragDropTarget" -defs["igEndDragDropTarget"][1]["location"] = "imgui" +defs["igEndDragDropTarget"][1]["location"] = "imgui:677" defs["igEndDragDropTarget"][1]["namespace"] = "ImGui" defs["igEndDragDropTarget"][1]["ov_cimguiname"] = "igEndDragDropTarget" defs["igEndDragDropTarget"][1]["ret"] = "void" @@ -11163,7 +11181,7 @@ defs["igEndFrame"][1]["call_args"] = "()" defs["igEndFrame"][1]["cimguiname"] = "igEndFrame" defs["igEndFrame"][1]["defaults"] = {} defs["igEndFrame"][1]["funcname"] = "EndFrame" -defs["igEndFrame"][1]["location"] = "imgui" +defs["igEndFrame"][1]["location"] = "imgui:253" defs["igEndFrame"][1]["namespace"] = "ImGui" defs["igEndFrame"][1]["ov_cimguiname"] = "igEndFrame" defs["igEndFrame"][1]["ret"] = "void" @@ -11179,7 +11197,7 @@ defs["igEndGroup"][1]["call_args"] = "()" defs["igEndGroup"][1]["cimguiname"] = "igEndGroup" defs["igEndGroup"][1]["defaults"] = {} defs["igEndGroup"][1]["funcname"] = "EndGroup" -defs["igEndGroup"][1]["location"] = "imgui" +defs["igEndGroup"][1]["location"] = "imgui:390" defs["igEndGroup"][1]["namespace"] = "ImGui" defs["igEndGroup"][1]["ov_cimguiname"] = "igEndGroup" defs["igEndGroup"][1]["ret"] = "void" @@ -11195,7 +11213,7 @@ defs["igEndMainMenuBar"][1]["call_args"] = "()" defs["igEndMainMenuBar"][1]["cimguiname"] = "igEndMainMenuBar" defs["igEndMainMenuBar"][1]["defaults"] = {} defs["igEndMainMenuBar"][1]["funcname"] = "EndMainMenuBar" -defs["igEndMainMenuBar"][1]["location"] = "imgui" +defs["igEndMainMenuBar"][1]["location"] = "imgui:589" defs["igEndMainMenuBar"][1]["namespace"] = "ImGui" defs["igEndMainMenuBar"][1]["ov_cimguiname"] = "igEndMainMenuBar" defs["igEndMainMenuBar"][1]["ret"] = "void" @@ -11211,7 +11229,7 @@ defs["igEndMenu"][1]["call_args"] = "()" defs["igEndMenu"][1]["cimguiname"] = "igEndMenu" defs["igEndMenu"][1]["defaults"] = {} defs["igEndMenu"][1]["funcname"] = "EndMenu" -defs["igEndMenu"][1]["location"] = "imgui" +defs["igEndMenu"][1]["location"] = "imgui:591" defs["igEndMenu"][1]["namespace"] = "ImGui" defs["igEndMenu"][1]["ov_cimguiname"] = "igEndMenu" defs["igEndMenu"][1]["ret"] = "void" @@ -11227,7 +11245,7 @@ defs["igEndMenuBar"][1]["call_args"] = "()" defs["igEndMenuBar"][1]["cimguiname"] = "igEndMenuBar" defs["igEndMenuBar"][1]["defaults"] = {} defs["igEndMenuBar"][1]["funcname"] = "EndMenuBar" -defs["igEndMenuBar"][1]["location"] = "imgui" +defs["igEndMenuBar"][1]["location"] = "imgui:587" defs["igEndMenuBar"][1]["namespace"] = "ImGui" defs["igEndMenuBar"][1]["ov_cimguiname"] = "igEndMenuBar" defs["igEndMenuBar"][1]["ret"] = "void" @@ -11243,7 +11261,7 @@ defs["igEndPopup"][1]["call_args"] = "()" defs["igEndPopup"][1]["cimguiname"] = "igEndPopup" defs["igEndPopup"][1]["defaults"] = {} defs["igEndPopup"][1]["funcname"] = "EndPopup" -defs["igEndPopup"][1]["location"] = "imgui" +defs["igEndPopup"][1]["location"] = "imgui:615" defs["igEndPopup"][1]["namespace"] = "ImGui" defs["igEndPopup"][1]["ov_cimguiname"] = "igEndPopup" defs["igEndPopup"][1]["ret"] = "void" @@ -11259,7 +11277,7 @@ defs["igEndTabBar"][1]["call_args"] = "()" defs["igEndTabBar"][1]["cimguiname"] = "igEndTabBar" defs["igEndTabBar"][1]["defaults"] = {} defs["igEndTabBar"][1]["funcname"] = "EndTabBar" -defs["igEndTabBar"][1]["location"] = "imgui" +defs["igEndTabBar"][1]["location"] = "imgui:655" defs["igEndTabBar"][1]["namespace"] = "ImGui" defs["igEndTabBar"][1]["ov_cimguiname"] = "igEndTabBar" defs["igEndTabBar"][1]["ret"] = "void" @@ -11275,7 +11293,7 @@ defs["igEndTabItem"][1]["call_args"] = "()" defs["igEndTabItem"][1]["cimguiname"] = "igEndTabItem" defs["igEndTabItem"][1]["defaults"] = {} defs["igEndTabItem"][1]["funcname"] = "EndTabItem" -defs["igEndTabItem"][1]["location"] = "imgui" +defs["igEndTabItem"][1]["location"] = "imgui:657" defs["igEndTabItem"][1]["namespace"] = "ImGui" defs["igEndTabItem"][1]["ov_cimguiname"] = "igEndTabItem" defs["igEndTabItem"][1]["ret"] = "void" @@ -11291,7 +11309,7 @@ defs["igEndTooltip"][1]["call_args"] = "()" defs["igEndTooltip"][1]["cimguiname"] = "igEndTooltip" defs["igEndTooltip"][1]["defaults"] = {} defs["igEndTooltip"][1]["funcname"] = "EndTooltip" -defs["igEndTooltip"][1]["location"] = "imgui" +defs["igEndTooltip"][1]["location"] = "imgui:598" defs["igEndTooltip"][1]["namespace"] = "ImGui" defs["igEndTooltip"][1]["ov_cimguiname"] = "igEndTooltip" defs["igEndTooltip"][1]["ret"] = "void" @@ -11313,7 +11331,7 @@ defs["igFindBestWindowPosForPopup"][1]["call_args"] = "(window)" defs["igFindBestWindowPosForPopup"][1]["cimguiname"] = "igFindBestWindowPosForPopup" defs["igFindBestWindowPosForPopup"][1]["defaults"] = {} defs["igFindBestWindowPosForPopup"][1]["funcname"] = "FindBestWindowPosForPopup" -defs["igFindBestWindowPosForPopup"][1]["location"] = "internal" +defs["igFindBestWindowPosForPopup"][1]["location"] = "imgui_internal:1873" defs["igFindBestWindowPosForPopup"][1]["namespace"] = "ImGui" defs["igFindBestWindowPosForPopup"][1]["nonUDT"] = 1 defs["igFindBestWindowPosForPopup"][1]["ov_cimguiname"] = "igFindBestWindowPosForPopup" @@ -11352,7 +11370,7 @@ defs["igFindBestWindowPosForPopupEx"][1]["cimguiname"] = "igFindBestWindowPosFor defs["igFindBestWindowPosForPopupEx"][1]["defaults"] = {} defs["igFindBestWindowPosForPopupEx"][1]["defaults"]["policy"] = "ImGuiPopupPositionPolicy_Default" defs["igFindBestWindowPosForPopupEx"][1]["funcname"] = "FindBestWindowPosForPopupEx" -defs["igFindBestWindowPosForPopupEx"][1]["location"] = "internal" +defs["igFindBestWindowPosForPopupEx"][1]["location"] = "imgui_internal:1874" defs["igFindBestWindowPosForPopupEx"][1]["namespace"] = "ImGui" defs["igFindBestWindowPosForPopupEx"][1]["nonUDT"] = 1 defs["igFindBestWindowPosForPopupEx"][1]["ov_cimguiname"] = "igFindBestWindowPosForPopupEx" @@ -11375,7 +11393,7 @@ defs["igFindOrCreateColumns"][1]["call_args"] = "(window,id)" defs["igFindOrCreateColumns"][1]["cimguiname"] = "igFindOrCreateColumns" defs["igFindOrCreateColumns"][1]["defaults"] = {} defs["igFindOrCreateColumns"][1]["funcname"] = "FindOrCreateColumns" -defs["igFindOrCreateColumns"][1]["location"] = "internal" +defs["igFindOrCreateColumns"][1]["location"] = "imgui_internal:1920" defs["igFindOrCreateColumns"][1]["namespace"] = "ImGui" defs["igFindOrCreateColumns"][1]["ov_cimguiname"] = "igFindOrCreateColumns" defs["igFindOrCreateColumns"][1]["ret"] = "ImGuiColumns*" @@ -11394,7 +11412,7 @@ defs["igFindOrCreateWindowSettings"][1]["call_args"] = "(name)" defs["igFindOrCreateWindowSettings"][1]["cimguiname"] = "igFindOrCreateWindowSettings" defs["igFindOrCreateWindowSettings"][1]["defaults"] = {} defs["igFindOrCreateWindowSettings"][1]["funcname"] = "FindOrCreateWindowSettings" -defs["igFindOrCreateWindowSettings"][1]["location"] = "internal" +defs["igFindOrCreateWindowSettings"][1]["location"] = "imgui_internal:1817" defs["igFindOrCreateWindowSettings"][1]["namespace"] = "ImGui" defs["igFindOrCreateWindowSettings"][1]["ov_cimguiname"] = "igFindOrCreateWindowSettings" defs["igFindOrCreateWindowSettings"][1]["ret"] = "ImGuiWindowSettings*" @@ -11415,9 +11433,9 @@ defs["igFindRenderedTextEnd"][1]["argsoriginal"] = "(const char* text,const char defs["igFindRenderedTextEnd"][1]["call_args"] = "(text,text_end)" defs["igFindRenderedTextEnd"][1]["cimguiname"] = "igFindRenderedTextEnd" defs["igFindRenderedTextEnd"][1]["defaults"] = {} -defs["igFindRenderedTextEnd"][1]["defaults"]["text_end"] = "((void*)0)" +defs["igFindRenderedTextEnd"][1]["defaults"]["text_end"] = "NULL" defs["igFindRenderedTextEnd"][1]["funcname"] = "FindRenderedTextEnd" -defs["igFindRenderedTextEnd"][1]["location"] = "internal" +defs["igFindRenderedTextEnd"][1]["location"] = "imgui_internal:1947" defs["igFindRenderedTextEnd"][1]["namespace"] = "ImGui" defs["igFindRenderedTextEnd"][1]["ov_cimguiname"] = "igFindRenderedTextEnd" defs["igFindRenderedTextEnd"][1]["ret"] = "const char*" @@ -11436,7 +11454,7 @@ defs["igFindSettingsHandler"][1]["call_args"] = "(type_name)" defs["igFindSettingsHandler"][1]["cimguiname"] = "igFindSettingsHandler" defs["igFindSettingsHandler"][1]["defaults"] = {} defs["igFindSettingsHandler"][1]["funcname"] = "FindSettingsHandler" -defs["igFindSettingsHandler"][1]["location"] = "internal" +defs["igFindSettingsHandler"][1]["location"] = "imgui_internal:1818" defs["igFindSettingsHandler"][1]["namespace"] = "ImGui" defs["igFindSettingsHandler"][1]["ov_cimguiname"] = "igFindSettingsHandler" defs["igFindSettingsHandler"][1]["ret"] = "ImGuiSettingsHandler*" @@ -11455,7 +11473,7 @@ defs["igFindWindowByID"][1]["call_args"] = "(id)" defs["igFindWindowByID"][1]["cimguiname"] = "igFindWindowByID" defs["igFindWindowByID"][1]["defaults"] = {} defs["igFindWindowByID"][1]["funcname"] = "FindWindowByID" -defs["igFindWindowByID"][1]["location"] = "internal" +defs["igFindWindowByID"][1]["location"] = "imgui_internal:1777" defs["igFindWindowByID"][1]["namespace"] = "ImGui" defs["igFindWindowByID"][1]["ov_cimguiname"] = "igFindWindowByID" defs["igFindWindowByID"][1]["ret"] = "ImGuiWindow*" @@ -11474,7 +11492,7 @@ defs["igFindWindowByName"][1]["call_args"] = "(name)" defs["igFindWindowByName"][1]["cimguiname"] = "igFindWindowByName" defs["igFindWindowByName"][1]["defaults"] = {} defs["igFindWindowByName"][1]["funcname"] = "FindWindowByName" -defs["igFindWindowByName"][1]["location"] = "internal" +defs["igFindWindowByName"][1]["location"] = "imgui_internal:1778" defs["igFindWindowByName"][1]["namespace"] = "ImGui" defs["igFindWindowByName"][1]["ov_cimguiname"] = "igFindWindowByName" defs["igFindWindowByName"][1]["ret"] = "ImGuiWindow*" @@ -11493,7 +11511,7 @@ defs["igFindWindowSettings"][1]["call_args"] = "(id)" defs["igFindWindowSettings"][1]["cimguiname"] = "igFindWindowSettings" defs["igFindWindowSettings"][1]["defaults"] = {} defs["igFindWindowSettings"][1]["funcname"] = "FindWindowSettings" -defs["igFindWindowSettings"][1]["location"] = "internal" +defs["igFindWindowSettings"][1]["location"] = "imgui_internal:1816" defs["igFindWindowSettings"][1]["namespace"] = "ImGui" defs["igFindWindowSettings"][1]["ov_cimguiname"] = "igFindWindowSettings" defs["igFindWindowSettings"][1]["ret"] = "ImGuiWindowSettings*" @@ -11515,7 +11533,7 @@ defs["igFocusTopMostWindowUnderOne"][1]["call_args"] = "(under_this_window,ignor defs["igFocusTopMostWindowUnderOne"][1]["cimguiname"] = "igFocusTopMostWindowUnderOne" defs["igFocusTopMostWindowUnderOne"][1]["defaults"] = {} defs["igFocusTopMostWindowUnderOne"][1]["funcname"] = "FocusTopMostWindowUnderOne" -defs["igFocusTopMostWindowUnderOne"][1]["location"] = "internal" +defs["igFocusTopMostWindowUnderOne"][1]["location"] = "imgui_internal:1791" defs["igFocusTopMostWindowUnderOne"][1]["namespace"] = "ImGui" defs["igFocusTopMostWindowUnderOne"][1]["ov_cimguiname"] = "igFocusTopMostWindowUnderOne" defs["igFocusTopMostWindowUnderOne"][1]["ret"] = "void" @@ -11534,7 +11552,7 @@ defs["igFocusWindow"][1]["call_args"] = "(window)" defs["igFocusWindow"][1]["cimguiname"] = "igFocusWindow" defs["igFocusWindow"][1]["defaults"] = {} defs["igFocusWindow"][1]["funcname"] = "FocusWindow" -defs["igFocusWindow"][1]["location"] = "internal" +defs["igFocusWindow"][1]["location"] = "imgui_internal:1790" defs["igFocusWindow"][1]["namespace"] = "ImGui" defs["igFocusWindow"][1]["ov_cimguiname"] = "igFocusWindow" defs["igFocusWindow"][1]["ret"] = "void" @@ -11556,7 +11574,7 @@ defs["igFocusableItemRegister"][1]["call_args"] = "(window,id)" defs["igFocusableItemRegister"][1]["cimguiname"] = "igFocusableItemRegister" defs["igFocusableItemRegister"][1]["defaults"] = {} defs["igFocusableItemRegister"][1]["funcname"] = "FocusableItemRegister" -defs["igFocusableItemRegister"][1]["location"] = "internal" +defs["igFocusableItemRegister"][1]["location"] = "imgui_internal:1849" defs["igFocusableItemRegister"][1]["namespace"] = "ImGui" defs["igFocusableItemRegister"][1]["ov_cimguiname"] = "igFocusableItemRegister" defs["igFocusableItemRegister"][1]["ret"] = "bool" @@ -11575,7 +11593,7 @@ defs["igFocusableItemUnregister"][1]["call_args"] = "(window)" defs["igFocusableItemUnregister"][1]["cimguiname"] = "igFocusableItemUnregister" defs["igFocusableItemUnregister"][1]["defaults"] = {} defs["igFocusableItemUnregister"][1]["funcname"] = "FocusableItemUnregister" -defs["igFocusableItemUnregister"][1]["location"] = "internal" +defs["igFocusableItemUnregister"][1]["location"] = "imgui_internal:1850" defs["igFocusableItemUnregister"][1]["namespace"] = "ImGui" defs["igFocusableItemUnregister"][1]["ov_cimguiname"] = "igFocusableItemUnregister" defs["igFocusableItemUnregister"][1]["ret"] = "void" @@ -11594,7 +11612,7 @@ defs["igGcAwakeTransientWindowBuffers"][1]["call_args"] = "(window)" defs["igGcAwakeTransientWindowBuffers"][1]["cimguiname"] = "igGcAwakeTransientWindowBuffers" defs["igGcAwakeTransientWindowBuffers"][1]["defaults"] = {} defs["igGcAwakeTransientWindowBuffers"][1]["funcname"] = "GcAwakeTransientWindowBuffers" -defs["igGcAwakeTransientWindowBuffers"][1]["location"] = "internal" +defs["igGcAwakeTransientWindowBuffers"][1]["location"] = "imgui_internal:2025" defs["igGcAwakeTransientWindowBuffers"][1]["namespace"] = "ImGui" defs["igGcAwakeTransientWindowBuffers"][1]["ov_cimguiname"] = "igGcAwakeTransientWindowBuffers" defs["igGcAwakeTransientWindowBuffers"][1]["ret"] = "void" @@ -11613,7 +11631,7 @@ defs["igGcCompactTransientWindowBuffers"][1]["call_args"] = "(window)" defs["igGcCompactTransientWindowBuffers"][1]["cimguiname"] = "igGcCompactTransientWindowBuffers" defs["igGcCompactTransientWindowBuffers"][1]["defaults"] = {} defs["igGcCompactTransientWindowBuffers"][1]["funcname"] = "GcCompactTransientWindowBuffers" -defs["igGcCompactTransientWindowBuffers"][1]["location"] = "internal" +defs["igGcCompactTransientWindowBuffers"][1]["location"] = "imgui_internal:2024" defs["igGcCompactTransientWindowBuffers"][1]["namespace"] = "ImGui" defs["igGcCompactTransientWindowBuffers"][1]["ov_cimguiname"] = "igGcCompactTransientWindowBuffers" defs["igGcCompactTransientWindowBuffers"][1]["ret"] = "void" @@ -11629,7 +11647,7 @@ defs["igGetActiveID"][1]["call_args"] = "()" defs["igGetActiveID"][1]["cimguiname"] = "igGetActiveID" defs["igGetActiveID"][1]["defaults"] = {} defs["igGetActiveID"][1]["funcname"] = "GetActiveID" -defs["igGetActiveID"][1]["location"] = "internal" +defs["igGetActiveID"][1]["location"] = "imgui_internal:1831" defs["igGetActiveID"][1]["namespace"] = "ImGui" defs["igGetActiveID"][1]["ov_cimguiname"] = "igGetActiveID" defs["igGetActiveID"][1]["ret"] = "ImGuiID" @@ -11645,7 +11663,7 @@ defs["igGetBackgroundDrawList"][1]["call_args"] = "()" defs["igGetBackgroundDrawList"][1]["cimguiname"] = "igGetBackgroundDrawList" defs["igGetBackgroundDrawList"][1]["defaults"] = {} defs["igGetBackgroundDrawList"][1]["funcname"] = "GetBackgroundDrawList" -defs["igGetBackgroundDrawList"][1]["location"] = "imgui" +defs["igGetBackgroundDrawList"][1]["location"] = "imgui:715" defs["igGetBackgroundDrawList"][1]["namespace"] = "ImGui" defs["igGetBackgroundDrawList"][1]["ov_cimguiname"] = "igGetBackgroundDrawList" defs["igGetBackgroundDrawList"][1]["ret"] = "ImDrawList*" @@ -11661,7 +11679,7 @@ defs["igGetClipboardText"][1]["call_args"] = "()" defs["igGetClipboardText"][1]["cimguiname"] = "igGetClipboardText" defs["igGetClipboardText"][1]["defaults"] = {} defs["igGetClipboardText"][1]["funcname"] = "GetClipboardText" -defs["igGetClipboardText"][1]["location"] = "imgui" +defs["igGetClipboardText"][1]["location"] = "imgui:766" defs["igGetClipboardText"][1]["namespace"] = "ImGui" defs["igGetClipboardText"][1]["ov_cimguiname"] = "igGetClipboardText" defs["igGetClipboardText"][1]["ret"] = "const char*" @@ -11684,7 +11702,7 @@ defs["igGetColorU32"][1]["cimguiname"] = "igGetColorU32" defs["igGetColorU32"][1]["defaults"] = {} defs["igGetColorU32"][1]["defaults"]["alpha_mul"] = "1.0f" defs["igGetColorU32"][1]["funcname"] = "GetColorU32" -defs["igGetColorU32"][1]["location"] = "imgui" +defs["igGetColorU32"][1]["location"] = "imgui:359" defs["igGetColorU32"][1]["namespace"] = "ImGui" defs["igGetColorU32"][1]["ov_cimguiname"] = "igGetColorU32Col" defs["igGetColorU32"][1]["ret"] = "ImU32" @@ -11701,7 +11719,7 @@ defs["igGetColorU32"][2]["call_args"] = "(col)" defs["igGetColorU32"][2]["cimguiname"] = "igGetColorU32" defs["igGetColorU32"][2]["defaults"] = {} defs["igGetColorU32"][2]["funcname"] = "GetColorU32" -defs["igGetColorU32"][2]["location"] = "imgui" +defs["igGetColorU32"][2]["location"] = "imgui:360" defs["igGetColorU32"][2]["namespace"] = "ImGui" defs["igGetColorU32"][2]["ov_cimguiname"] = "igGetColorU32Vec4" defs["igGetColorU32"][2]["ret"] = "ImU32" @@ -11718,7 +11736,7 @@ defs["igGetColorU32"][3]["call_args"] = "(col)" defs["igGetColorU32"][3]["cimguiname"] = "igGetColorU32" defs["igGetColorU32"][3]["defaults"] = {} defs["igGetColorU32"][3]["funcname"] = "GetColorU32" -defs["igGetColorU32"][3]["location"] = "imgui" +defs["igGetColorU32"][3]["location"] = "imgui:361" defs["igGetColorU32"][3]["namespace"] = "ImGui" defs["igGetColorU32"][3]["ov_cimguiname"] = "igGetColorU32U32" defs["igGetColorU32"][3]["ret"] = "ImU32" @@ -11736,7 +11754,7 @@ defs["igGetColumnIndex"][1]["call_args"] = "()" defs["igGetColumnIndex"][1]["cimguiname"] = "igGetColumnIndex" defs["igGetColumnIndex"][1]["defaults"] = {} defs["igGetColumnIndex"][1]["funcname"] = "GetColumnIndex" -defs["igGetColumnIndex"][1]["location"] = "imgui" +defs["igGetColumnIndex"][1]["location"] = "imgui:646" defs["igGetColumnIndex"][1]["namespace"] = "ImGui" defs["igGetColumnIndex"][1]["ov_cimguiname"] = "igGetColumnIndex" defs["igGetColumnIndex"][1]["ret"] = "int" @@ -11758,7 +11776,7 @@ defs["igGetColumnNormFromOffset"][1]["call_args"] = "(columns,offset)" defs["igGetColumnNormFromOffset"][1]["cimguiname"] = "igGetColumnNormFromOffset" defs["igGetColumnNormFromOffset"][1]["defaults"] = {} defs["igGetColumnNormFromOffset"][1]["funcname"] = "GetColumnNormFromOffset" -defs["igGetColumnNormFromOffset"][1]["location"] = "internal" +defs["igGetColumnNormFromOffset"][1]["location"] = "imgui_internal:1922" defs["igGetColumnNormFromOffset"][1]["namespace"] = "ImGui" defs["igGetColumnNormFromOffset"][1]["ov_cimguiname"] = "igGetColumnNormFromOffset" defs["igGetColumnNormFromOffset"][1]["ret"] = "float" @@ -11778,7 +11796,7 @@ defs["igGetColumnOffset"][1]["cimguiname"] = "igGetColumnOffset" defs["igGetColumnOffset"][1]["defaults"] = {} defs["igGetColumnOffset"][1]["defaults"]["column_index"] = "-1" defs["igGetColumnOffset"][1]["funcname"] = "GetColumnOffset" -defs["igGetColumnOffset"][1]["location"] = "imgui" +defs["igGetColumnOffset"][1]["location"] = "imgui:649" defs["igGetColumnOffset"][1]["namespace"] = "ImGui" defs["igGetColumnOffset"][1]["ov_cimguiname"] = "igGetColumnOffset" defs["igGetColumnOffset"][1]["ret"] = "float" @@ -11800,7 +11818,7 @@ defs["igGetColumnOffsetFromNorm"][1]["call_args"] = "(columns,offset_norm)" defs["igGetColumnOffsetFromNorm"][1]["cimguiname"] = "igGetColumnOffsetFromNorm" defs["igGetColumnOffsetFromNorm"][1]["defaults"] = {} defs["igGetColumnOffsetFromNorm"][1]["funcname"] = "GetColumnOffsetFromNorm" -defs["igGetColumnOffsetFromNorm"][1]["location"] = "internal" +defs["igGetColumnOffsetFromNorm"][1]["location"] = "imgui_internal:1921" defs["igGetColumnOffsetFromNorm"][1]["namespace"] = "ImGui" defs["igGetColumnOffsetFromNorm"][1]["ov_cimguiname"] = "igGetColumnOffsetFromNorm" defs["igGetColumnOffsetFromNorm"][1]["ret"] = "float" @@ -11820,7 +11838,7 @@ defs["igGetColumnWidth"][1]["cimguiname"] = "igGetColumnWidth" defs["igGetColumnWidth"][1]["defaults"] = {} defs["igGetColumnWidth"][1]["defaults"]["column_index"] = "-1" defs["igGetColumnWidth"][1]["funcname"] = "GetColumnWidth" -defs["igGetColumnWidth"][1]["location"] = "imgui" +defs["igGetColumnWidth"][1]["location"] = "imgui:647" defs["igGetColumnWidth"][1]["namespace"] = "ImGui" defs["igGetColumnWidth"][1]["ov_cimguiname"] = "igGetColumnWidth" defs["igGetColumnWidth"][1]["ret"] = "float" @@ -11836,7 +11854,7 @@ defs["igGetColumnsCount"][1]["call_args"] = "()" defs["igGetColumnsCount"][1]["cimguiname"] = "igGetColumnsCount" defs["igGetColumnsCount"][1]["defaults"] = {} defs["igGetColumnsCount"][1]["funcname"] = "GetColumnsCount" -defs["igGetColumnsCount"][1]["location"] = "imgui" +defs["igGetColumnsCount"][1]["location"] = "imgui:651" defs["igGetColumnsCount"][1]["namespace"] = "ImGui" defs["igGetColumnsCount"][1]["ov_cimguiname"] = "igGetColumnsCount" defs["igGetColumnsCount"][1]["ret"] = "int" @@ -11858,7 +11876,7 @@ defs["igGetColumnsID"][1]["call_args"] = "(str_id,count)" defs["igGetColumnsID"][1]["cimguiname"] = "igGetColumnsID" defs["igGetColumnsID"][1]["defaults"] = {} defs["igGetColumnsID"][1]["funcname"] = "GetColumnsID" -defs["igGetColumnsID"][1]["location"] = "internal" +defs["igGetColumnsID"][1]["location"] = "imgui_internal:1919" defs["igGetColumnsID"][1]["namespace"] = "ImGui" defs["igGetColumnsID"][1]["ov_cimguiname"] = "igGetColumnsID" defs["igGetColumnsID"][1]["ret"] = "ImGuiID" @@ -11877,7 +11895,7 @@ defs["igGetContentRegionAvail"][1]["call_args"] = "()" defs["igGetContentRegionAvail"][1]["cimguiname"] = "igGetContentRegionAvail" defs["igGetContentRegionAvail"][1]["defaults"] = {} defs["igGetContentRegionAvail"][1]["funcname"] = "GetContentRegionAvail" -defs["igGetContentRegionAvail"][1]["location"] = "imgui" +defs["igGetContentRegionAvail"][1]["location"] = "imgui:329" defs["igGetContentRegionAvail"][1]["namespace"] = "ImGui" defs["igGetContentRegionAvail"][1]["nonUDT"] = 1 defs["igGetContentRegionAvail"][1]["ov_cimguiname"] = "igGetContentRegionAvail" @@ -11897,7 +11915,7 @@ defs["igGetContentRegionMax"][1]["call_args"] = "()" defs["igGetContentRegionMax"][1]["cimguiname"] = "igGetContentRegionMax" defs["igGetContentRegionMax"][1]["defaults"] = {} defs["igGetContentRegionMax"][1]["funcname"] = "GetContentRegionMax" -defs["igGetContentRegionMax"][1]["location"] = "imgui" +defs["igGetContentRegionMax"][1]["location"] = "imgui:328" defs["igGetContentRegionMax"][1]["namespace"] = "ImGui" defs["igGetContentRegionMax"][1]["nonUDT"] = 1 defs["igGetContentRegionMax"][1]["ov_cimguiname"] = "igGetContentRegionMax" @@ -11917,7 +11935,7 @@ defs["igGetContentRegionMaxAbs"][1]["call_args"] = "()" defs["igGetContentRegionMaxAbs"][1]["cimguiname"] = "igGetContentRegionMaxAbs" defs["igGetContentRegionMaxAbs"][1]["defaults"] = {} defs["igGetContentRegionMaxAbs"][1]["funcname"] = "GetContentRegionMaxAbs" -defs["igGetContentRegionMaxAbs"][1]["location"] = "internal" +defs["igGetContentRegionMaxAbs"][1]["location"] = "imgui_internal:1857" defs["igGetContentRegionMaxAbs"][1]["namespace"] = "ImGui" defs["igGetContentRegionMaxAbs"][1]["nonUDT"] = 1 defs["igGetContentRegionMaxAbs"][1]["ov_cimguiname"] = "igGetContentRegionMaxAbs" @@ -11934,7 +11952,7 @@ defs["igGetCurrentContext"][1]["call_args"] = "()" defs["igGetCurrentContext"][1]["cimguiname"] = "igGetCurrentContext" defs["igGetCurrentContext"][1]["defaults"] = {} defs["igGetCurrentContext"][1]["funcname"] = "GetCurrentContext" -defs["igGetCurrentContext"][1]["location"] = "imgui" +defs["igGetCurrentContext"][1]["location"] = "imgui:246" defs["igGetCurrentContext"][1]["namespace"] = "ImGui" defs["igGetCurrentContext"][1]["ov_cimguiname"] = "igGetCurrentContext" defs["igGetCurrentContext"][1]["ret"] = "ImGuiContext*" @@ -11950,7 +11968,7 @@ defs["igGetCurrentWindow"][1]["call_args"] = "()" defs["igGetCurrentWindow"][1]["cimguiname"] = "igGetCurrentWindow" defs["igGetCurrentWindow"][1]["defaults"] = {} defs["igGetCurrentWindow"][1]["funcname"] = "GetCurrentWindow" -defs["igGetCurrentWindow"][1]["location"] = "internal" +defs["igGetCurrentWindow"][1]["location"] = "imgui_internal:1776" defs["igGetCurrentWindow"][1]["namespace"] = "ImGui" defs["igGetCurrentWindow"][1]["ov_cimguiname"] = "igGetCurrentWindow" defs["igGetCurrentWindow"][1]["ret"] = "ImGuiWindow*" @@ -11966,7 +11984,7 @@ defs["igGetCurrentWindowRead"][1]["call_args"] = "()" defs["igGetCurrentWindowRead"][1]["cimguiname"] = "igGetCurrentWindowRead" defs["igGetCurrentWindowRead"][1]["defaults"] = {} defs["igGetCurrentWindowRead"][1]["funcname"] = "GetCurrentWindowRead" -defs["igGetCurrentWindowRead"][1]["location"] = "internal" +defs["igGetCurrentWindowRead"][1]["location"] = "imgui_internal:1775" defs["igGetCurrentWindowRead"][1]["namespace"] = "ImGui" defs["igGetCurrentWindowRead"][1]["ov_cimguiname"] = "igGetCurrentWindowRead" defs["igGetCurrentWindowRead"][1]["ret"] = "ImGuiWindow*" @@ -11985,7 +12003,7 @@ defs["igGetCursorPos"][1]["call_args"] = "()" defs["igGetCursorPos"][1]["cimguiname"] = "igGetCursorPos" defs["igGetCursorPos"][1]["defaults"] = {} defs["igGetCursorPos"][1]["funcname"] = "GetCursorPos" -defs["igGetCursorPos"][1]["location"] = "imgui" +defs["igGetCursorPos"][1]["location"] = "imgui:391" defs["igGetCursorPos"][1]["namespace"] = "ImGui" defs["igGetCursorPos"][1]["nonUDT"] = 1 defs["igGetCursorPos"][1]["ov_cimguiname"] = "igGetCursorPos" @@ -12002,7 +12020,7 @@ defs["igGetCursorPosX"][1]["call_args"] = "()" defs["igGetCursorPosX"][1]["cimguiname"] = "igGetCursorPosX" defs["igGetCursorPosX"][1]["defaults"] = {} defs["igGetCursorPosX"][1]["funcname"] = "GetCursorPosX" -defs["igGetCursorPosX"][1]["location"] = "imgui" +defs["igGetCursorPosX"][1]["location"] = "imgui:392" defs["igGetCursorPosX"][1]["namespace"] = "ImGui" defs["igGetCursorPosX"][1]["ov_cimguiname"] = "igGetCursorPosX" defs["igGetCursorPosX"][1]["ret"] = "float" @@ -12018,7 +12036,7 @@ defs["igGetCursorPosY"][1]["call_args"] = "()" defs["igGetCursorPosY"][1]["cimguiname"] = "igGetCursorPosY" defs["igGetCursorPosY"][1]["defaults"] = {} defs["igGetCursorPosY"][1]["funcname"] = "GetCursorPosY" -defs["igGetCursorPosY"][1]["location"] = "imgui" +defs["igGetCursorPosY"][1]["location"] = "imgui:393" defs["igGetCursorPosY"][1]["namespace"] = "ImGui" defs["igGetCursorPosY"][1]["ov_cimguiname"] = "igGetCursorPosY" defs["igGetCursorPosY"][1]["ret"] = "float" @@ -12037,7 +12055,7 @@ defs["igGetCursorScreenPos"][1]["call_args"] = "()" defs["igGetCursorScreenPos"][1]["cimguiname"] = "igGetCursorScreenPos" defs["igGetCursorScreenPos"][1]["defaults"] = {} defs["igGetCursorScreenPos"][1]["funcname"] = "GetCursorScreenPos" -defs["igGetCursorScreenPos"][1]["location"] = "imgui" +defs["igGetCursorScreenPos"][1]["location"] = "imgui:398" defs["igGetCursorScreenPos"][1]["namespace"] = "ImGui" defs["igGetCursorScreenPos"][1]["nonUDT"] = 1 defs["igGetCursorScreenPos"][1]["ov_cimguiname"] = "igGetCursorScreenPos" @@ -12057,7 +12075,7 @@ defs["igGetCursorStartPos"][1]["call_args"] = "()" defs["igGetCursorStartPos"][1]["cimguiname"] = "igGetCursorStartPos" defs["igGetCursorStartPos"][1]["defaults"] = {} defs["igGetCursorStartPos"][1]["funcname"] = "GetCursorStartPos" -defs["igGetCursorStartPos"][1]["location"] = "imgui" +defs["igGetCursorStartPos"][1]["location"] = "imgui:397" defs["igGetCursorStartPos"][1]["namespace"] = "ImGui" defs["igGetCursorStartPos"][1]["nonUDT"] = 1 defs["igGetCursorStartPos"][1]["ov_cimguiname"] = "igGetCursorStartPos" @@ -12074,7 +12092,7 @@ defs["igGetDefaultFont"][1]["call_args"] = "()" defs["igGetDefaultFont"][1]["cimguiname"] = "igGetDefaultFont" defs["igGetDefaultFont"][1]["defaults"] = {} defs["igGetDefaultFont"][1]["funcname"] = "GetDefaultFont" -defs["igGetDefaultFont"][1]["location"] = "internal" +defs["igGetDefaultFont"][1]["location"] = "imgui_internal:1798" defs["igGetDefaultFont"][1]["namespace"] = "ImGui" defs["igGetDefaultFont"][1]["ov_cimguiname"] = "igGetDefaultFont" defs["igGetDefaultFont"][1]["ret"] = "ImFont*" @@ -12090,7 +12108,7 @@ defs["igGetDragDropPayload"][1]["call_args"] = "()" defs["igGetDragDropPayload"][1]["cimguiname"] = "igGetDragDropPayload" defs["igGetDragDropPayload"][1]["defaults"] = {} defs["igGetDragDropPayload"][1]["funcname"] = "GetDragDropPayload" -defs["igGetDragDropPayload"][1]["location"] = "imgui" +defs["igGetDragDropPayload"][1]["location"] = "imgui:678" defs["igGetDragDropPayload"][1]["namespace"] = "ImGui" defs["igGetDragDropPayload"][1]["ov_cimguiname"] = "igGetDragDropPayload" defs["igGetDragDropPayload"][1]["ret"] = "const ImGuiPayload*" @@ -12106,7 +12124,7 @@ defs["igGetDrawData"][1]["call_args"] = "()" defs["igGetDrawData"][1]["cimguiname"] = "igGetDrawData" defs["igGetDrawData"][1]["defaults"] = {} defs["igGetDrawData"][1]["funcname"] = "GetDrawData" -defs["igGetDrawData"][1]["location"] = "imgui" +defs["igGetDrawData"][1]["location"] = "imgui:255" defs["igGetDrawData"][1]["namespace"] = "ImGui" defs["igGetDrawData"][1]["ov_cimguiname"] = "igGetDrawData" defs["igGetDrawData"][1]["ret"] = "ImDrawData*" @@ -12122,7 +12140,7 @@ defs["igGetDrawListSharedData"][1]["call_args"] = "()" defs["igGetDrawListSharedData"][1]["cimguiname"] = "igGetDrawListSharedData" defs["igGetDrawListSharedData"][1]["defaults"] = {} defs["igGetDrawListSharedData"][1]["funcname"] = "GetDrawListSharedData" -defs["igGetDrawListSharedData"][1]["location"] = "imgui" +defs["igGetDrawListSharedData"][1]["location"] = "imgui:717" defs["igGetDrawListSharedData"][1]["namespace"] = "ImGui" defs["igGetDrawListSharedData"][1]["ov_cimguiname"] = "igGetDrawListSharedData" defs["igGetDrawListSharedData"][1]["ret"] = "ImDrawListSharedData*" @@ -12138,7 +12156,7 @@ defs["igGetFocusID"][1]["call_args"] = "()" defs["igGetFocusID"][1]["cimguiname"] = "igGetFocusID" defs["igGetFocusID"][1]["defaults"] = {} defs["igGetFocusID"][1]["funcname"] = "GetFocusID" -defs["igGetFocusID"][1]["location"] = "internal" +defs["igGetFocusID"][1]["location"] = "imgui_internal:1832" defs["igGetFocusID"][1]["namespace"] = "ImGui" defs["igGetFocusID"][1]["ov_cimguiname"] = "igGetFocusID" defs["igGetFocusID"][1]["ret"] = "ImGuiID" @@ -12154,7 +12172,7 @@ defs["igGetFocusScopeID"][1]["call_args"] = "()" defs["igGetFocusScopeID"][1]["cimguiname"] = "igGetFocusScopeID" defs["igGetFocusScopeID"][1]["defaults"] = {} defs["igGetFocusScopeID"][1]["funcname"] = "GetFocusScopeID" -defs["igGetFocusScopeID"][1]["location"] = "internal" +defs["igGetFocusScopeID"][1]["location"] = "imgui_internal:1894" defs["igGetFocusScopeID"][1]["namespace"] = "ImGui" defs["igGetFocusScopeID"][1]["ov_cimguiname"] = "igGetFocusScopeID" defs["igGetFocusScopeID"][1]["ret"] = "ImGuiID" @@ -12170,7 +12188,7 @@ defs["igGetFont"][1]["call_args"] = "()" defs["igGetFont"][1]["cimguiname"] = "igGetFont" defs["igGetFont"][1]["defaults"] = {} defs["igGetFont"][1]["funcname"] = "GetFont" -defs["igGetFont"][1]["location"] = "imgui" +defs["igGetFont"][1]["location"] = "imgui:356" defs["igGetFont"][1]["namespace"] = "ImGui" defs["igGetFont"][1]["ov_cimguiname"] = "igGetFont" defs["igGetFont"][1]["ret"] = "ImFont*" @@ -12186,7 +12204,7 @@ defs["igGetFontSize"][1]["call_args"] = "()" defs["igGetFontSize"][1]["cimguiname"] = "igGetFontSize" defs["igGetFontSize"][1]["defaults"] = {} defs["igGetFontSize"][1]["funcname"] = "GetFontSize" -defs["igGetFontSize"][1]["location"] = "imgui" +defs["igGetFontSize"][1]["location"] = "imgui:357" defs["igGetFontSize"][1]["namespace"] = "ImGui" defs["igGetFontSize"][1]["ov_cimguiname"] = "igGetFontSize" defs["igGetFontSize"][1]["ret"] = "float" @@ -12205,7 +12223,7 @@ defs["igGetFontTexUvWhitePixel"][1]["call_args"] = "()" defs["igGetFontTexUvWhitePixel"][1]["cimguiname"] = "igGetFontTexUvWhitePixel" defs["igGetFontTexUvWhitePixel"][1]["defaults"] = {} defs["igGetFontTexUvWhitePixel"][1]["funcname"] = "GetFontTexUvWhitePixel" -defs["igGetFontTexUvWhitePixel"][1]["location"] = "imgui" +defs["igGetFontTexUvWhitePixel"][1]["location"] = "imgui:358" defs["igGetFontTexUvWhitePixel"][1]["namespace"] = "ImGui" defs["igGetFontTexUvWhitePixel"][1]["nonUDT"] = 1 defs["igGetFontTexUvWhitePixel"][1]["ov_cimguiname"] = "igGetFontTexUvWhitePixel" @@ -12222,7 +12240,7 @@ defs["igGetForegroundDrawList"][1]["call_args"] = "()" defs["igGetForegroundDrawList"][1]["cimguiname"] = "igGetForegroundDrawList" defs["igGetForegroundDrawList"][1]["defaults"] = {} defs["igGetForegroundDrawList"][1]["funcname"] = "GetForegroundDrawList" -defs["igGetForegroundDrawList"][1]["location"] = "imgui" +defs["igGetForegroundDrawList"][1]["location"] = "imgui:716" defs["igGetForegroundDrawList"][1]["namespace"] = "ImGui" defs["igGetForegroundDrawList"][1]["ov_cimguiname"] = "igGetForegroundDrawListNil" defs["igGetForegroundDrawList"][1]["ret"] = "ImDrawList*" @@ -12239,7 +12257,7 @@ defs["igGetForegroundDrawList"][2]["call_args"] = "(window)" defs["igGetForegroundDrawList"][2]["cimguiname"] = "igGetForegroundDrawList" defs["igGetForegroundDrawList"][2]["defaults"] = {} defs["igGetForegroundDrawList"][2]["funcname"] = "GetForegroundDrawList" -defs["igGetForegroundDrawList"][2]["location"] = "internal" +defs["igGetForegroundDrawList"][2]["location"] = "imgui_internal:1799" defs["igGetForegroundDrawList"][2]["namespace"] = "ImGui" defs["igGetForegroundDrawList"][2]["ov_cimguiname"] = "igGetForegroundDrawListWindowPtr" defs["igGetForegroundDrawList"][2]["ret"] = "ImDrawList*" @@ -12256,7 +12274,7 @@ defs["igGetFrameCount"][1]["call_args"] = "()" defs["igGetFrameCount"][1]["cimguiname"] = "igGetFrameCount" defs["igGetFrameCount"][1]["defaults"] = {} defs["igGetFrameCount"][1]["funcname"] = "GetFrameCount" -defs["igGetFrameCount"][1]["location"] = "imgui" +defs["igGetFrameCount"][1]["location"] = "imgui:714" defs["igGetFrameCount"][1]["namespace"] = "ImGui" defs["igGetFrameCount"][1]["ov_cimguiname"] = "igGetFrameCount" defs["igGetFrameCount"][1]["ret"] = "int" @@ -12272,7 +12290,7 @@ defs["igGetFrameHeight"][1]["call_args"] = "()" defs["igGetFrameHeight"][1]["cimguiname"] = "igGetFrameHeight" defs["igGetFrameHeight"][1]["defaults"] = {} defs["igGetFrameHeight"][1]["funcname"] = "GetFrameHeight" -defs["igGetFrameHeight"][1]["location"] = "imgui" +defs["igGetFrameHeight"][1]["location"] = "imgui:403" defs["igGetFrameHeight"][1]["namespace"] = "ImGui" defs["igGetFrameHeight"][1]["ov_cimguiname"] = "igGetFrameHeight" defs["igGetFrameHeight"][1]["ret"] = "float" @@ -12288,7 +12306,7 @@ defs["igGetFrameHeightWithSpacing"][1]["call_args"] = "()" defs["igGetFrameHeightWithSpacing"][1]["cimguiname"] = "igGetFrameHeightWithSpacing" defs["igGetFrameHeightWithSpacing"][1]["defaults"] = {} defs["igGetFrameHeightWithSpacing"][1]["funcname"] = "GetFrameHeightWithSpacing" -defs["igGetFrameHeightWithSpacing"][1]["location"] = "imgui" +defs["igGetFrameHeightWithSpacing"][1]["location"] = "imgui:404" defs["igGetFrameHeightWithSpacing"][1]["namespace"] = "ImGui" defs["igGetFrameHeightWithSpacing"][1]["ov_cimguiname"] = "igGetFrameHeightWithSpacing" defs["igGetFrameHeightWithSpacing"][1]["ret"] = "float" @@ -12304,7 +12322,7 @@ defs["igGetHoveredID"][1]["call_args"] = "()" defs["igGetHoveredID"][1]["cimguiname"] = "igGetHoveredID" defs["igGetHoveredID"][1]["defaults"] = {} defs["igGetHoveredID"][1]["funcname"] = "GetHoveredID" -defs["igGetHoveredID"][1]["location"] = "internal" +defs["igGetHoveredID"][1]["location"] = "imgui_internal:1836" defs["igGetHoveredID"][1]["namespace"] = "ImGui" defs["igGetHoveredID"][1]["ov_cimguiname"] = "igGetHoveredID" defs["igGetHoveredID"][1]["ret"] = "ImGuiID" @@ -12323,7 +12341,7 @@ defs["igGetID"][1]["call_args"] = "(str_id)" defs["igGetID"][1]["cimguiname"] = "igGetID" defs["igGetID"][1]["defaults"] = {} defs["igGetID"][1]["funcname"] = "GetID" -defs["igGetID"][1]["location"] = "imgui" +defs["igGetID"][1]["location"] = "imgui:418" defs["igGetID"][1]["namespace"] = "ImGui" defs["igGetID"][1]["ov_cimguiname"] = "igGetIDStr" defs["igGetID"][1]["ret"] = "ImGuiID" @@ -12343,7 +12361,7 @@ defs["igGetID"][2]["call_args"] = "(str_id_begin,str_id_end)" defs["igGetID"][2]["cimguiname"] = "igGetID" defs["igGetID"][2]["defaults"] = {} defs["igGetID"][2]["funcname"] = "GetID" -defs["igGetID"][2]["location"] = "imgui" +defs["igGetID"][2]["location"] = "imgui:419" defs["igGetID"][2]["namespace"] = "ImGui" defs["igGetID"][2]["ov_cimguiname"] = "igGetIDStrStr" defs["igGetID"][2]["ret"] = "ImGuiID" @@ -12360,7 +12378,7 @@ defs["igGetID"][3]["call_args"] = "(ptr_id)" defs["igGetID"][3]["cimguiname"] = "igGetID" defs["igGetID"][3]["defaults"] = {} defs["igGetID"][3]["funcname"] = "GetID" -defs["igGetID"][3]["location"] = "imgui" +defs["igGetID"][3]["location"] = "imgui:420" defs["igGetID"][3]["namespace"] = "ImGui" defs["igGetID"][3]["ov_cimguiname"] = "igGetIDPtr" defs["igGetID"][3]["ret"] = "ImGuiID" @@ -12378,7 +12396,7 @@ defs["igGetIO"][1]["call_args"] = "()" defs["igGetIO"][1]["cimguiname"] = "igGetIO" defs["igGetIO"][1]["defaults"] = {} defs["igGetIO"][1]["funcname"] = "GetIO" -defs["igGetIO"][1]["location"] = "imgui" +defs["igGetIO"][1]["location"] = "imgui:250" defs["igGetIO"][1]["namespace"] = "ImGui" defs["igGetIO"][1]["ov_cimguiname"] = "igGetIO" defs["igGetIO"][1]["ret"] = "ImGuiIO*" @@ -12398,7 +12416,7 @@ defs["igGetInputTextState"][1]["call_args"] = "(id)" defs["igGetInputTextState"][1]["cimguiname"] = "igGetInputTextState" defs["igGetInputTextState"][1]["defaults"] = {} defs["igGetInputTextState"][1]["funcname"] = "GetInputTextState" -defs["igGetInputTextState"][1]["location"] = "internal" +defs["igGetInputTextState"][1]["location"] = "imgui_internal:2009" defs["igGetInputTextState"][1]["namespace"] = "ImGui" defs["igGetInputTextState"][1]["ov_cimguiname"] = "igGetInputTextState" defs["igGetInputTextState"][1]["ret"] = "ImGuiInputTextState*" @@ -12414,7 +12432,7 @@ defs["igGetItemID"][1]["call_args"] = "()" defs["igGetItemID"][1]["cimguiname"] = "igGetItemID" defs["igGetItemID"][1]["defaults"] = {} defs["igGetItemID"][1]["funcname"] = "GetItemID" -defs["igGetItemID"][1]["location"] = "internal" +defs["igGetItemID"][1]["location"] = "imgui_internal:1829" defs["igGetItemID"][1]["namespace"] = "ImGui" defs["igGetItemID"][1]["ov_cimguiname"] = "igGetItemID" defs["igGetItemID"][1]["ret"] = "ImGuiID" @@ -12433,7 +12451,7 @@ defs["igGetItemRectMax"][1]["call_args"] = "()" defs["igGetItemRectMax"][1]["cimguiname"] = "igGetItemRectMax" defs["igGetItemRectMax"][1]["defaults"] = {} defs["igGetItemRectMax"][1]["funcname"] = "GetItemRectMax" -defs["igGetItemRectMax"][1]["location"] = "imgui" +defs["igGetItemRectMax"][1]["location"] = "imgui:706" defs["igGetItemRectMax"][1]["namespace"] = "ImGui" defs["igGetItemRectMax"][1]["nonUDT"] = 1 defs["igGetItemRectMax"][1]["ov_cimguiname"] = "igGetItemRectMax" @@ -12453,7 +12471,7 @@ defs["igGetItemRectMin"][1]["call_args"] = "()" defs["igGetItemRectMin"][1]["cimguiname"] = "igGetItemRectMin" defs["igGetItemRectMin"][1]["defaults"] = {} defs["igGetItemRectMin"][1]["funcname"] = "GetItemRectMin" -defs["igGetItemRectMin"][1]["location"] = "imgui" +defs["igGetItemRectMin"][1]["location"] = "imgui:705" defs["igGetItemRectMin"][1]["namespace"] = "ImGui" defs["igGetItemRectMin"][1]["nonUDT"] = 1 defs["igGetItemRectMin"][1]["ov_cimguiname"] = "igGetItemRectMin" @@ -12473,7 +12491,7 @@ defs["igGetItemRectSize"][1]["call_args"] = "()" defs["igGetItemRectSize"][1]["cimguiname"] = "igGetItemRectSize" defs["igGetItemRectSize"][1]["defaults"] = {} defs["igGetItemRectSize"][1]["funcname"] = "GetItemRectSize" -defs["igGetItemRectSize"][1]["location"] = "imgui" +defs["igGetItemRectSize"][1]["location"] = "imgui:707" defs["igGetItemRectSize"][1]["namespace"] = "ImGui" defs["igGetItemRectSize"][1]["nonUDT"] = 1 defs["igGetItemRectSize"][1]["ov_cimguiname"] = "igGetItemRectSize" @@ -12490,7 +12508,7 @@ defs["igGetItemStatusFlags"][1]["call_args"] = "()" defs["igGetItemStatusFlags"][1]["cimguiname"] = "igGetItemStatusFlags" defs["igGetItemStatusFlags"][1]["defaults"] = {} defs["igGetItemStatusFlags"][1]["funcname"] = "GetItemStatusFlags" -defs["igGetItemStatusFlags"][1]["location"] = "internal" +defs["igGetItemStatusFlags"][1]["location"] = "imgui_internal:1830" defs["igGetItemStatusFlags"][1]["namespace"] = "ImGui" defs["igGetItemStatusFlags"][1]["ov_cimguiname"] = "igGetItemStatusFlags" defs["igGetItemStatusFlags"][1]["ret"] = "ImGuiItemStatusFlags" @@ -12509,7 +12527,7 @@ defs["igGetKeyIndex"][1]["call_args"] = "(imgui_key)" defs["igGetKeyIndex"][1]["cimguiname"] = "igGetKeyIndex" defs["igGetKeyIndex"][1]["defaults"] = {} defs["igGetKeyIndex"][1]["funcname"] = "GetKeyIndex" -defs["igGetKeyIndex"][1]["location"] = "imgui" +defs["igGetKeyIndex"][1]["location"] = "imgui:737" defs["igGetKeyIndex"][1]["namespace"] = "ImGui" defs["igGetKeyIndex"][1]["ov_cimguiname"] = "igGetKeyIndex" defs["igGetKeyIndex"][1]["ret"] = "int" @@ -12534,7 +12552,7 @@ defs["igGetKeyPressedAmount"][1]["call_args"] = "(key_index,repeat_delay,rate)" defs["igGetKeyPressedAmount"][1]["cimguiname"] = "igGetKeyPressedAmount" defs["igGetKeyPressedAmount"][1]["defaults"] = {} defs["igGetKeyPressedAmount"][1]["funcname"] = "GetKeyPressedAmount" -defs["igGetKeyPressedAmount"][1]["location"] = "imgui" +defs["igGetKeyPressedAmount"][1]["location"] = "imgui:741" defs["igGetKeyPressedAmount"][1]["namespace"] = "ImGui" defs["igGetKeyPressedAmount"][1]["ov_cimguiname"] = "igGetKeyPressedAmount" defs["igGetKeyPressedAmount"][1]["ret"] = "int" @@ -12550,7 +12568,7 @@ defs["igGetMergedKeyModFlags"][1]["call_args"] = "()" defs["igGetMergedKeyModFlags"][1]["cimguiname"] = "igGetMergedKeyModFlags" defs["igGetMergedKeyModFlags"][1]["defaults"] = {} defs["igGetMergedKeyModFlags"][1]["funcname"] = "GetMergedKeyModFlags" -defs["igGetMergedKeyModFlags"][1]["location"] = "internal" +defs["igGetMergedKeyModFlags"][1]["location"] = "imgui_internal:1905" defs["igGetMergedKeyModFlags"][1]["namespace"] = "ImGui" defs["igGetMergedKeyModFlags"][1]["ov_cimguiname"] = "igGetMergedKeyModFlags" defs["igGetMergedKeyModFlags"][1]["ret"] = "ImGuiKeyModFlags" @@ -12566,7 +12584,7 @@ defs["igGetMouseCursor"][1]["call_args"] = "()" defs["igGetMouseCursor"][1]["cimguiname"] = "igGetMouseCursor" defs["igGetMouseCursor"][1]["defaults"] = {} defs["igGetMouseCursor"][1]["funcname"] = "GetMouseCursor" -defs["igGetMouseCursor"][1]["location"] = "imgui" +defs["igGetMouseCursor"][1]["location"] = "imgui:760" defs["igGetMouseCursor"][1]["namespace"] = "ImGui" defs["igGetMouseCursor"][1]["ov_cimguiname"] = "igGetMouseCursor" defs["igGetMouseCursor"][1]["ret"] = "ImGuiMouseCursor" @@ -12593,7 +12611,7 @@ defs["igGetMouseDragDelta"][1]["defaults"] = {} defs["igGetMouseDragDelta"][1]["defaults"]["button"] = "0" defs["igGetMouseDragDelta"][1]["defaults"]["lock_threshold"] = "-1.0f" defs["igGetMouseDragDelta"][1]["funcname"] = "GetMouseDragDelta" -defs["igGetMouseDragDelta"][1]["location"] = "imgui" +defs["igGetMouseDragDelta"][1]["location"] = "imgui:758" defs["igGetMouseDragDelta"][1]["namespace"] = "ImGui" defs["igGetMouseDragDelta"][1]["nonUDT"] = 1 defs["igGetMouseDragDelta"][1]["ov_cimguiname"] = "igGetMouseDragDelta" @@ -12613,7 +12631,7 @@ defs["igGetMousePos"][1]["call_args"] = "()" defs["igGetMousePos"][1]["cimguiname"] = "igGetMousePos" defs["igGetMousePos"][1]["defaults"] = {} defs["igGetMousePos"][1]["funcname"] = "GetMousePos" -defs["igGetMousePos"][1]["location"] = "imgui" +defs["igGetMousePos"][1]["location"] = "imgui:755" defs["igGetMousePos"][1]["namespace"] = "ImGui" defs["igGetMousePos"][1]["nonUDT"] = 1 defs["igGetMousePos"][1]["ov_cimguiname"] = "igGetMousePos" @@ -12633,7 +12651,7 @@ defs["igGetMousePosOnOpeningCurrentPopup"][1]["call_args"] = "()" defs["igGetMousePosOnOpeningCurrentPopup"][1]["cimguiname"] = "igGetMousePosOnOpeningCurrentPopup" defs["igGetMousePosOnOpeningCurrentPopup"][1]["defaults"] = {} defs["igGetMousePosOnOpeningCurrentPopup"][1]["funcname"] = "GetMousePosOnOpeningCurrentPopup" -defs["igGetMousePosOnOpeningCurrentPopup"][1]["location"] = "imgui" +defs["igGetMousePosOnOpeningCurrentPopup"][1]["location"] = "imgui:756" defs["igGetMousePosOnOpeningCurrentPopup"][1]["namespace"] = "ImGui" defs["igGetMousePosOnOpeningCurrentPopup"][1]["nonUDT"] = 1 defs["igGetMousePosOnOpeningCurrentPopup"][1]["ov_cimguiname"] = "igGetMousePosOnOpeningCurrentPopup" @@ -12656,7 +12674,7 @@ defs["igGetNavInputAmount"][1]["call_args"] = "(n,mode)" defs["igGetNavInputAmount"][1]["cimguiname"] = "igGetNavInputAmount" defs["igGetNavInputAmount"][1]["defaults"] = {} defs["igGetNavInputAmount"][1]["funcname"] = "GetNavInputAmount" -defs["igGetNavInputAmount"][1]["location"] = "internal" +defs["igGetNavInputAmount"][1]["location"] = "imgui_internal:1882" defs["igGetNavInputAmount"][1]["namespace"] = "ImGui" defs["igGetNavInputAmount"][1]["ov_cimguiname"] = "igGetNavInputAmount" defs["igGetNavInputAmount"][1]["ret"] = "float" @@ -12689,7 +12707,7 @@ defs["igGetNavInputAmount2d"][1]["defaults"] = {} defs["igGetNavInputAmount2d"][1]["defaults"]["fast_factor"] = "0.0f" defs["igGetNavInputAmount2d"][1]["defaults"]["slow_factor"] = "0.0f" defs["igGetNavInputAmount2d"][1]["funcname"] = "GetNavInputAmount2d" -defs["igGetNavInputAmount2d"][1]["location"] = "internal" +defs["igGetNavInputAmount2d"][1]["location"] = "imgui_internal:1883" defs["igGetNavInputAmount2d"][1]["namespace"] = "ImGui" defs["igGetNavInputAmount2d"][1]["nonUDT"] = 1 defs["igGetNavInputAmount2d"][1]["ov_cimguiname"] = "igGetNavInputAmount2d" @@ -12706,7 +12724,7 @@ defs["igGetScrollMaxX"][1]["call_args"] = "()" defs["igGetScrollMaxX"][1]["cimguiname"] = "igGetScrollMaxX" defs["igGetScrollMaxX"][1]["defaults"] = {} defs["igGetScrollMaxX"][1]["funcname"] = "GetScrollMaxX" -defs["igGetScrollMaxX"][1]["location"] = "imgui" +defs["igGetScrollMaxX"][1]["location"] = "imgui:337" defs["igGetScrollMaxX"][1]["namespace"] = "ImGui" defs["igGetScrollMaxX"][1]["ov_cimguiname"] = "igGetScrollMaxX" defs["igGetScrollMaxX"][1]["ret"] = "float" @@ -12722,7 +12740,7 @@ defs["igGetScrollMaxY"][1]["call_args"] = "()" defs["igGetScrollMaxY"][1]["cimguiname"] = "igGetScrollMaxY" defs["igGetScrollMaxY"][1]["defaults"] = {} defs["igGetScrollMaxY"][1]["funcname"] = "GetScrollMaxY" -defs["igGetScrollMaxY"][1]["location"] = "imgui" +defs["igGetScrollMaxY"][1]["location"] = "imgui:338" defs["igGetScrollMaxY"][1]["namespace"] = "ImGui" defs["igGetScrollMaxY"][1]["ov_cimguiname"] = "igGetScrollMaxY" defs["igGetScrollMaxY"][1]["ret"] = "float" @@ -12738,7 +12756,7 @@ defs["igGetScrollX"][1]["call_args"] = "()" defs["igGetScrollX"][1]["cimguiname"] = "igGetScrollX" defs["igGetScrollX"][1]["defaults"] = {} defs["igGetScrollX"][1]["funcname"] = "GetScrollX" -defs["igGetScrollX"][1]["location"] = "imgui" +defs["igGetScrollX"][1]["location"] = "imgui:335" defs["igGetScrollX"][1]["namespace"] = "ImGui" defs["igGetScrollX"][1]["ov_cimguiname"] = "igGetScrollX" defs["igGetScrollX"][1]["ret"] = "float" @@ -12754,7 +12772,7 @@ defs["igGetScrollY"][1]["call_args"] = "()" defs["igGetScrollY"][1]["cimguiname"] = "igGetScrollY" defs["igGetScrollY"][1]["defaults"] = {} defs["igGetScrollY"][1]["funcname"] = "GetScrollY" -defs["igGetScrollY"][1]["location"] = "imgui" +defs["igGetScrollY"][1]["location"] = "imgui:336" defs["igGetScrollY"][1]["namespace"] = "ImGui" defs["igGetScrollY"][1]["ov_cimguiname"] = "igGetScrollY" defs["igGetScrollY"][1]["ret"] = "float" @@ -12770,7 +12788,7 @@ defs["igGetStateStorage"][1]["call_args"] = "()" defs["igGetStateStorage"][1]["cimguiname"] = "igGetStateStorage" defs["igGetStateStorage"][1]["defaults"] = {} defs["igGetStateStorage"][1]["funcname"] = "GetStateStorage" -defs["igGetStateStorage"][1]["location"] = "imgui" +defs["igGetStateStorage"][1]["location"] = "imgui:720" defs["igGetStateStorage"][1]["namespace"] = "ImGui" defs["igGetStateStorage"][1]["ov_cimguiname"] = "igGetStateStorage" defs["igGetStateStorage"][1]["ret"] = "ImGuiStorage*" @@ -12786,7 +12804,7 @@ defs["igGetStyle"][1]["call_args"] = "()" defs["igGetStyle"][1]["cimguiname"] = "igGetStyle" defs["igGetStyle"][1]["defaults"] = {} defs["igGetStyle"][1]["funcname"] = "GetStyle" -defs["igGetStyle"][1]["location"] = "imgui" +defs["igGetStyle"][1]["location"] = "imgui:251" defs["igGetStyle"][1]["namespace"] = "ImGui" defs["igGetStyle"][1]["ov_cimguiname"] = "igGetStyle" defs["igGetStyle"][1]["ret"] = "ImGuiStyle*" @@ -12806,7 +12824,7 @@ defs["igGetStyleColorName"][1]["call_args"] = "(idx)" defs["igGetStyleColorName"][1]["cimguiname"] = "igGetStyleColorName" defs["igGetStyleColorName"][1]["defaults"] = {} defs["igGetStyleColorName"][1]["funcname"] = "GetStyleColorName" -defs["igGetStyleColorName"][1]["location"] = "imgui" +defs["igGetStyleColorName"][1]["location"] = "imgui:718" defs["igGetStyleColorName"][1]["namespace"] = "ImGui" defs["igGetStyleColorName"][1]["ov_cimguiname"] = "igGetStyleColorName" defs["igGetStyleColorName"][1]["ret"] = "const char*" @@ -12825,7 +12843,7 @@ defs["igGetStyleColorVec4"][1]["call_args"] = "(idx)" defs["igGetStyleColorVec4"][1]["cimguiname"] = "igGetStyleColorVec4" defs["igGetStyleColorVec4"][1]["defaults"] = {} defs["igGetStyleColorVec4"][1]["funcname"] = "GetStyleColorVec4" -defs["igGetStyleColorVec4"][1]["location"] = "imgui" +defs["igGetStyleColorVec4"][1]["location"] = "imgui:355" defs["igGetStyleColorVec4"][1]["namespace"] = "ImGui" defs["igGetStyleColorVec4"][1]["ov_cimguiname"] = "igGetStyleColorVec4" defs["igGetStyleColorVec4"][1]["ret"] = "const ImVec4*" @@ -12842,7 +12860,7 @@ defs["igGetTextLineHeight"][1]["call_args"] = "()" defs["igGetTextLineHeight"][1]["cimguiname"] = "igGetTextLineHeight" defs["igGetTextLineHeight"][1]["defaults"] = {} defs["igGetTextLineHeight"][1]["funcname"] = "GetTextLineHeight" -defs["igGetTextLineHeight"][1]["location"] = "imgui" +defs["igGetTextLineHeight"][1]["location"] = "imgui:401" defs["igGetTextLineHeight"][1]["namespace"] = "ImGui" defs["igGetTextLineHeight"][1]["ov_cimguiname"] = "igGetTextLineHeight" defs["igGetTextLineHeight"][1]["ret"] = "float" @@ -12858,7 +12876,7 @@ defs["igGetTextLineHeightWithSpacing"][1]["call_args"] = "()" defs["igGetTextLineHeightWithSpacing"][1]["cimguiname"] = "igGetTextLineHeightWithSpacing" defs["igGetTextLineHeightWithSpacing"][1]["defaults"] = {} defs["igGetTextLineHeightWithSpacing"][1]["funcname"] = "GetTextLineHeightWithSpacing" -defs["igGetTextLineHeightWithSpacing"][1]["location"] = "imgui" +defs["igGetTextLineHeightWithSpacing"][1]["location"] = "imgui:402" defs["igGetTextLineHeightWithSpacing"][1]["namespace"] = "ImGui" defs["igGetTextLineHeightWithSpacing"][1]["ov_cimguiname"] = "igGetTextLineHeightWithSpacing" defs["igGetTextLineHeightWithSpacing"][1]["ret"] = "float" @@ -12874,7 +12892,7 @@ defs["igGetTime"][1]["call_args"] = "()" defs["igGetTime"][1]["cimguiname"] = "igGetTime" defs["igGetTime"][1]["defaults"] = {} defs["igGetTime"][1]["funcname"] = "GetTime" -defs["igGetTime"][1]["location"] = "imgui" +defs["igGetTime"][1]["location"] = "imgui:713" defs["igGetTime"][1]["namespace"] = "ImGui" defs["igGetTime"][1]["ov_cimguiname"] = "igGetTime" defs["igGetTime"][1]["ret"] = "double" @@ -12890,7 +12908,7 @@ defs["igGetTopMostPopupModal"][1]["call_args"] = "()" defs["igGetTopMostPopupModal"][1]["cimguiname"] = "igGetTopMostPopupModal" defs["igGetTopMostPopupModal"][1]["defaults"] = {} defs["igGetTopMostPopupModal"][1]["funcname"] = "GetTopMostPopupModal" -defs["igGetTopMostPopupModal"][1]["location"] = "internal" +defs["igGetTopMostPopupModal"][1]["location"] = "imgui_internal:1872" defs["igGetTopMostPopupModal"][1]["namespace"] = "ImGui" defs["igGetTopMostPopupModal"][1]["ov_cimguiname"] = "igGetTopMostPopupModal" defs["igGetTopMostPopupModal"][1]["ret"] = "ImGuiWindow*" @@ -12906,7 +12924,7 @@ defs["igGetTreeNodeToLabelSpacing"][1]["call_args"] = "()" defs["igGetTreeNodeToLabelSpacing"][1]["cimguiname"] = "igGetTreeNodeToLabelSpacing" defs["igGetTreeNodeToLabelSpacing"][1]["defaults"] = {} defs["igGetTreeNodeToLabelSpacing"][1]["funcname"] = "GetTreeNodeToLabelSpacing" -defs["igGetTreeNodeToLabelSpacing"][1]["location"] = "imgui" +defs["igGetTreeNodeToLabelSpacing"][1]["location"] = "imgui:550" defs["igGetTreeNodeToLabelSpacing"][1]["namespace"] = "ImGui" defs["igGetTreeNodeToLabelSpacing"][1]["ov_cimguiname"] = "igGetTreeNodeToLabelSpacing" defs["igGetTreeNodeToLabelSpacing"][1]["ret"] = "float" @@ -12922,7 +12940,7 @@ defs["igGetVersion"][1]["call_args"] = "()" defs["igGetVersion"][1]["cimguiname"] = "igGetVersion" defs["igGetVersion"][1]["defaults"] = {} defs["igGetVersion"][1]["funcname"] = "GetVersion" -defs["igGetVersion"][1]["location"] = "imgui" +defs["igGetVersion"][1]["location"] = "imgui:265" defs["igGetVersion"][1]["namespace"] = "ImGui" defs["igGetVersion"][1]["ov_cimguiname"] = "igGetVersion" defs["igGetVersion"][1]["ret"] = "const char*" @@ -12944,7 +12962,7 @@ defs["igGetWindowAllowedExtentRect"][1]["call_args"] = "(window)" defs["igGetWindowAllowedExtentRect"][1]["cimguiname"] = "igGetWindowAllowedExtentRect" defs["igGetWindowAllowedExtentRect"][1]["defaults"] = {} defs["igGetWindowAllowedExtentRect"][1]["funcname"] = "GetWindowAllowedExtentRect" -defs["igGetWindowAllowedExtentRect"][1]["location"] = "internal" +defs["igGetWindowAllowedExtentRect"][1]["location"] = "imgui_internal:1783" defs["igGetWindowAllowedExtentRect"][1]["namespace"] = "ImGui" defs["igGetWindowAllowedExtentRect"][1]["nonUDT"] = 1 defs["igGetWindowAllowedExtentRect"][1]["ov_cimguiname"] = "igGetWindowAllowedExtentRect" @@ -12964,7 +12982,7 @@ defs["igGetWindowContentRegionMax"][1]["call_args"] = "()" defs["igGetWindowContentRegionMax"][1]["cimguiname"] = "igGetWindowContentRegionMax" defs["igGetWindowContentRegionMax"][1]["defaults"] = {} defs["igGetWindowContentRegionMax"][1]["funcname"] = "GetWindowContentRegionMax" -defs["igGetWindowContentRegionMax"][1]["location"] = "imgui" +defs["igGetWindowContentRegionMax"][1]["location"] = "imgui:331" defs["igGetWindowContentRegionMax"][1]["namespace"] = "ImGui" defs["igGetWindowContentRegionMax"][1]["nonUDT"] = 1 defs["igGetWindowContentRegionMax"][1]["ov_cimguiname"] = "igGetWindowContentRegionMax" @@ -12984,7 +13002,7 @@ defs["igGetWindowContentRegionMin"][1]["call_args"] = "()" defs["igGetWindowContentRegionMin"][1]["cimguiname"] = "igGetWindowContentRegionMin" defs["igGetWindowContentRegionMin"][1]["defaults"] = {} defs["igGetWindowContentRegionMin"][1]["funcname"] = "GetWindowContentRegionMin" -defs["igGetWindowContentRegionMin"][1]["location"] = "imgui" +defs["igGetWindowContentRegionMin"][1]["location"] = "imgui:330" defs["igGetWindowContentRegionMin"][1]["namespace"] = "ImGui" defs["igGetWindowContentRegionMin"][1]["nonUDT"] = 1 defs["igGetWindowContentRegionMin"][1]["ov_cimguiname"] = "igGetWindowContentRegionMin" @@ -13001,7 +13019,7 @@ defs["igGetWindowContentRegionWidth"][1]["call_args"] = "()" defs["igGetWindowContentRegionWidth"][1]["cimguiname"] = "igGetWindowContentRegionWidth" defs["igGetWindowContentRegionWidth"][1]["defaults"] = {} defs["igGetWindowContentRegionWidth"][1]["funcname"] = "GetWindowContentRegionWidth" -defs["igGetWindowContentRegionWidth"][1]["location"] = "imgui" +defs["igGetWindowContentRegionWidth"][1]["location"] = "imgui:332" defs["igGetWindowContentRegionWidth"][1]["namespace"] = "ImGui" defs["igGetWindowContentRegionWidth"][1]["ov_cimguiname"] = "igGetWindowContentRegionWidth" defs["igGetWindowContentRegionWidth"][1]["ret"] = "float" @@ -13017,7 +13035,7 @@ defs["igGetWindowDrawList"][1]["call_args"] = "()" defs["igGetWindowDrawList"][1]["cimguiname"] = "igGetWindowDrawList" defs["igGetWindowDrawList"][1]["defaults"] = {} defs["igGetWindowDrawList"][1]["funcname"] = "GetWindowDrawList" -defs["igGetWindowDrawList"][1]["location"] = "imgui" +defs["igGetWindowDrawList"][1]["location"] = "imgui:302" defs["igGetWindowDrawList"][1]["namespace"] = "ImGui" defs["igGetWindowDrawList"][1]["ov_cimguiname"] = "igGetWindowDrawList" defs["igGetWindowDrawList"][1]["ret"] = "ImDrawList*" @@ -13033,7 +13051,7 @@ defs["igGetWindowHeight"][1]["call_args"] = "()" defs["igGetWindowHeight"][1]["cimguiname"] = "igGetWindowHeight" defs["igGetWindowHeight"][1]["defaults"] = {} defs["igGetWindowHeight"][1]["funcname"] = "GetWindowHeight" -defs["igGetWindowHeight"][1]["location"] = "imgui" +defs["igGetWindowHeight"][1]["location"] = "imgui:306" defs["igGetWindowHeight"][1]["namespace"] = "ImGui" defs["igGetWindowHeight"][1]["ov_cimguiname"] = "igGetWindowHeight" defs["igGetWindowHeight"][1]["ret"] = "float" @@ -13052,7 +13070,7 @@ defs["igGetWindowPos"][1]["call_args"] = "()" defs["igGetWindowPos"][1]["cimguiname"] = "igGetWindowPos" defs["igGetWindowPos"][1]["defaults"] = {} defs["igGetWindowPos"][1]["funcname"] = "GetWindowPos" -defs["igGetWindowPos"][1]["location"] = "imgui" +defs["igGetWindowPos"][1]["location"] = "imgui:303" defs["igGetWindowPos"][1]["namespace"] = "ImGui" defs["igGetWindowPos"][1]["nonUDT"] = 1 defs["igGetWindowPos"][1]["ov_cimguiname"] = "igGetWindowPos" @@ -13075,7 +13093,7 @@ defs["igGetWindowResizeID"][1]["call_args"] = "(window,n)" defs["igGetWindowResizeID"][1]["cimguiname"] = "igGetWindowResizeID" defs["igGetWindowResizeID"][1]["defaults"] = {} defs["igGetWindowResizeID"][1]["funcname"] = "GetWindowResizeID" -defs["igGetWindowResizeID"][1]["location"] = "internal" +defs["igGetWindowResizeID"][1]["location"] = "imgui_internal:1976" defs["igGetWindowResizeID"][1]["namespace"] = "ImGui" defs["igGetWindowResizeID"][1]["ov_cimguiname"] = "igGetWindowResizeID" defs["igGetWindowResizeID"][1]["ret"] = "ImGuiID" @@ -13097,7 +13115,7 @@ defs["igGetWindowScrollbarID"][1]["call_args"] = "(window,axis)" defs["igGetWindowScrollbarID"][1]["cimguiname"] = "igGetWindowScrollbarID" defs["igGetWindowScrollbarID"][1]["defaults"] = {} defs["igGetWindowScrollbarID"][1]["funcname"] = "GetWindowScrollbarID" -defs["igGetWindowScrollbarID"][1]["location"] = "internal" +defs["igGetWindowScrollbarID"][1]["location"] = "imgui_internal:1975" defs["igGetWindowScrollbarID"][1]["namespace"] = "ImGui" defs["igGetWindowScrollbarID"][1]["ov_cimguiname"] = "igGetWindowScrollbarID" defs["igGetWindowScrollbarID"][1]["ret"] = "ImGuiID" @@ -13122,7 +13140,7 @@ defs["igGetWindowScrollbarRect"][1]["call_args"] = "(window,axis)" defs["igGetWindowScrollbarRect"][1]["cimguiname"] = "igGetWindowScrollbarRect" defs["igGetWindowScrollbarRect"][1]["defaults"] = {} defs["igGetWindowScrollbarRect"][1]["funcname"] = "GetWindowScrollbarRect" -defs["igGetWindowScrollbarRect"][1]["location"] = "internal" +defs["igGetWindowScrollbarRect"][1]["location"] = "imgui_internal:1974" defs["igGetWindowScrollbarRect"][1]["namespace"] = "ImGui" defs["igGetWindowScrollbarRect"][1]["nonUDT"] = 1 defs["igGetWindowScrollbarRect"][1]["ov_cimguiname"] = "igGetWindowScrollbarRect" @@ -13142,7 +13160,7 @@ defs["igGetWindowSize"][1]["call_args"] = "()" defs["igGetWindowSize"][1]["cimguiname"] = "igGetWindowSize" defs["igGetWindowSize"][1]["defaults"] = {} defs["igGetWindowSize"][1]["funcname"] = "GetWindowSize" -defs["igGetWindowSize"][1]["location"] = "imgui" +defs["igGetWindowSize"][1]["location"] = "imgui:304" defs["igGetWindowSize"][1]["namespace"] = "ImGui" defs["igGetWindowSize"][1]["nonUDT"] = 1 defs["igGetWindowSize"][1]["ov_cimguiname"] = "igGetWindowSize" @@ -13159,7 +13177,7 @@ defs["igGetWindowWidth"][1]["call_args"] = "()" defs["igGetWindowWidth"][1]["cimguiname"] = "igGetWindowWidth" defs["igGetWindowWidth"][1]["defaults"] = {} defs["igGetWindowWidth"][1]["funcname"] = "GetWindowWidth" -defs["igGetWindowWidth"][1]["location"] = "imgui" +defs["igGetWindowWidth"][1]["location"] = "imgui:305" defs["igGetWindowWidth"][1]["namespace"] = "ImGui" defs["igGetWindowWidth"][1]["ov_cimguiname"] = "igGetWindowWidth" defs["igGetWindowWidth"][1]["ret"] = "float" @@ -13178,7 +13196,7 @@ defs["igImAbs"][1]["call_args"] = "(x)" defs["igImAbs"][1]["cimguiname"] = "igImAbs" defs["igImAbs"][1]["defaults"] = {} defs["igImAbs"][1]["funcname"] = "ImAbs" -defs["igImAbs"][1]["location"] = "internal" +defs["igImAbs"][1]["location"] = "imgui_internal:351" defs["igImAbs"][1]["ov_cimguiname"] = "igImAbsFloat" defs["igImAbs"][1]["ret"] = "float" defs["igImAbs"][1]["signature"] = "(float)" @@ -13194,7 +13212,7 @@ defs["igImAbs"][2]["call_args"] = "(x)" defs["igImAbs"][2]["cimguiname"] = "igImAbs" defs["igImAbs"][2]["defaults"] = {} defs["igImAbs"][2]["funcname"] = "ImAbs" -defs["igImAbs"][2]["location"] = "internal" +defs["igImAbs"][2]["location"] = "imgui_internal:352" defs["igImAbs"][2]["ov_cimguiname"] = "igImAbsdouble" defs["igImAbs"][2]["ret"] = "double" defs["igImAbs"][2]["signature"] = "(double)" @@ -13216,7 +13234,7 @@ defs["igImAlphaBlendColors"][1]["call_args"] = "(col_a,col_b)" defs["igImAlphaBlendColors"][1]["cimguiname"] = "igImAlphaBlendColors" defs["igImAlphaBlendColors"][1]["defaults"] = {} defs["igImAlphaBlendColors"][1]["funcname"] = "ImAlphaBlendColors" -defs["igImAlphaBlendColors"][1]["location"] = "internal" +defs["igImAlphaBlendColors"][1]["location"] = "imgui_internal:255" defs["igImAlphaBlendColors"][1]["ov_cimguiname"] = "igImAlphaBlendColors" defs["igImAlphaBlendColors"][1]["ret"] = "ImU32" defs["igImAlphaBlendColors"][1]["signature"] = "(ImU32,ImU32)" @@ -13249,7 +13267,7 @@ defs["igImBezierCalc"][1]["call_args"] = "(p1,p2,p3,p4,t)" defs["igImBezierCalc"][1]["cimguiname"] = "igImBezierCalc" defs["igImBezierCalc"][1]["defaults"] = {} defs["igImBezierCalc"][1]["funcname"] = "ImBezierCalc" -defs["igImBezierCalc"][1]["location"] = "internal" +defs["igImBezierCalc"][1]["location"] = "imgui_internal:385" defs["igImBezierCalc"][1]["nonUDT"] = 1 defs["igImBezierCalc"][1]["ov_cimguiname"] = "igImBezierCalc" defs["igImBezierCalc"][1]["ret"] = "void" @@ -13286,7 +13304,7 @@ defs["igImBezierClosestPoint"][1]["call_args"] = "(p1,p2,p3,p4,p,num_segments)" defs["igImBezierClosestPoint"][1]["cimguiname"] = "igImBezierClosestPoint" defs["igImBezierClosestPoint"][1]["defaults"] = {} defs["igImBezierClosestPoint"][1]["funcname"] = "ImBezierClosestPoint" -defs["igImBezierClosestPoint"][1]["location"] = "internal" +defs["igImBezierClosestPoint"][1]["location"] = "imgui_internal:386" defs["igImBezierClosestPoint"][1]["nonUDT"] = 1 defs["igImBezierClosestPoint"][1]["ov_cimguiname"] = "igImBezierClosestPoint" defs["igImBezierClosestPoint"][1]["ret"] = "void" @@ -13323,7 +13341,7 @@ defs["igImBezierClosestPointCasteljau"][1]["call_args"] = "(p1,p2,p3,p4,p,tess_t defs["igImBezierClosestPointCasteljau"][1]["cimguiname"] = "igImBezierClosestPointCasteljau" defs["igImBezierClosestPointCasteljau"][1]["defaults"] = {} defs["igImBezierClosestPointCasteljau"][1]["funcname"] = "ImBezierClosestPointCasteljau" -defs["igImBezierClosestPointCasteljau"][1]["location"] = "internal" +defs["igImBezierClosestPointCasteljau"][1]["location"] = "imgui_internal:387" defs["igImBezierClosestPointCasteljau"][1]["nonUDT"] = 1 defs["igImBezierClosestPointCasteljau"][1]["ov_cimguiname"] = "igImBezierClosestPointCasteljau" defs["igImBezierClosestPointCasteljau"][1]["ret"] = "void" @@ -13345,7 +13363,7 @@ defs["igImBitArrayClearBit"][1]["call_args"] = "(arr,n)" defs["igImBitArrayClearBit"][1]["cimguiname"] = "igImBitArrayClearBit" defs["igImBitArrayClearBit"][1]["defaults"] = {} defs["igImBitArrayClearBit"][1]["funcname"] = "ImBitArrayClearBit" -defs["igImBitArrayClearBit"][1]["location"] = "internal" +defs["igImBitArrayClearBit"][1]["location"] = "imgui_internal:452" defs["igImBitArrayClearBit"][1]["ov_cimguiname"] = "igImBitArrayClearBit" defs["igImBitArrayClearBit"][1]["ret"] = "void" defs["igImBitArrayClearBit"][1]["signature"] = "(ImU32*,int)" @@ -13366,7 +13384,7 @@ defs["igImBitArraySetBit"][1]["call_args"] = "(arr,n)" defs["igImBitArraySetBit"][1]["cimguiname"] = "igImBitArraySetBit" defs["igImBitArraySetBit"][1]["defaults"] = {} defs["igImBitArraySetBit"][1]["funcname"] = "ImBitArraySetBit" -defs["igImBitArraySetBit"][1]["location"] = "internal" +defs["igImBitArraySetBit"][1]["location"] = "imgui_internal:453" defs["igImBitArraySetBit"][1]["ov_cimguiname"] = "igImBitArraySetBit" defs["igImBitArraySetBit"][1]["ret"] = "void" defs["igImBitArraySetBit"][1]["signature"] = "(ImU32*,int)" @@ -13390,7 +13408,7 @@ defs["igImBitArraySetBitRange"][1]["call_args"] = "(arr,n,n2)" defs["igImBitArraySetBitRange"][1]["cimguiname"] = "igImBitArraySetBitRange" defs["igImBitArraySetBitRange"][1]["defaults"] = {} defs["igImBitArraySetBitRange"][1]["funcname"] = "ImBitArraySetBitRange" -defs["igImBitArraySetBitRange"][1]["location"] = "internal" +defs["igImBitArraySetBitRange"][1]["location"] = "imgui_internal:454" defs["igImBitArraySetBitRange"][1]["ov_cimguiname"] = "igImBitArraySetBitRange" defs["igImBitArraySetBitRange"][1]["ret"] = "void" defs["igImBitArraySetBitRange"][1]["signature"] = "(ImU32*,int,int)" @@ -13411,7 +13429,7 @@ defs["igImBitArrayTestBit"][1]["call_args"] = "(arr,n)" defs["igImBitArrayTestBit"][1]["cimguiname"] = "igImBitArrayTestBit" defs["igImBitArrayTestBit"][1]["defaults"] = {} defs["igImBitArrayTestBit"][1]["funcname"] = "ImBitArrayTestBit" -defs["igImBitArrayTestBit"][1]["location"] = "internal" +defs["igImBitArrayTestBit"][1]["location"] = "imgui_internal:451" defs["igImBitArrayTestBit"][1]["ov_cimguiname"] = "igImBitArrayTestBit" defs["igImBitArrayTestBit"][1]["ret"] = "bool" defs["igImBitArrayTestBit"][1]["signature"] = "(const ImU32*,int)" @@ -13429,7 +13447,7 @@ defs["igImCharIsBlankA"][1]["call_args"] = "(c)" defs["igImCharIsBlankA"][1]["cimguiname"] = "igImCharIsBlankA" defs["igImCharIsBlankA"][1]["defaults"] = {} defs["igImCharIsBlankA"][1]["funcname"] = "ImCharIsBlankA" -defs["igImCharIsBlankA"][1]["location"] = "internal" +defs["igImCharIsBlankA"][1]["location"] = "imgui_internal:280" defs["igImCharIsBlankA"][1]["ov_cimguiname"] = "igImCharIsBlankA" defs["igImCharIsBlankA"][1]["ret"] = "bool" defs["igImCharIsBlankA"][1]["signature"] = "(char)" @@ -13447,7 +13465,7 @@ defs["igImCharIsBlankW"][1]["call_args"] = "(c)" defs["igImCharIsBlankW"][1]["cimguiname"] = "igImCharIsBlankW" defs["igImCharIsBlankW"][1]["defaults"] = {} defs["igImCharIsBlankW"][1]["funcname"] = "ImCharIsBlankW" -defs["igImCharIsBlankW"][1]["location"] = "internal" +defs["igImCharIsBlankW"][1]["location"] = "imgui_internal:281" defs["igImCharIsBlankW"][1]["ov_cimguiname"] = "igImCharIsBlankW" defs["igImCharIsBlankW"][1]["ret"] = "bool" defs["igImCharIsBlankW"][1]["signature"] = "(unsigned int)" @@ -13474,7 +13492,7 @@ defs["igImClamp"][1]["call_args"] = "(v,mn,mx)" defs["igImClamp"][1]["cimguiname"] = "igImClamp" defs["igImClamp"][1]["defaults"] = {} defs["igImClamp"][1]["funcname"] = "ImClamp" -defs["igImClamp"][1]["location"] = "internal" +defs["igImClamp"][1]["location"] = "imgui_internal:368" defs["igImClamp"][1]["nonUDT"] = 1 defs["igImClamp"][1]["ov_cimguiname"] = "igImClamp" defs["igImClamp"][1]["ret"] = "void" @@ -13496,7 +13514,7 @@ defs["igImDot"][1]["call_args"] = "(a,b)" defs["igImDot"][1]["cimguiname"] = "igImDot" defs["igImDot"][1]["defaults"] = {} defs["igImDot"][1]["funcname"] = "ImDot" -defs["igImDot"][1]["location"] = "internal" +defs["igImDot"][1]["location"] = "imgui_internal:379" defs["igImDot"][1]["ov_cimguiname"] = "igImDot" defs["igImDot"][1]["ret"] = "float" defs["igImDot"][1]["signature"] = "(const ImVec2,const ImVec2)" @@ -13514,7 +13532,7 @@ defs["igImFileClose"][1]["call_args"] = "(file)" defs["igImFileClose"][1]["cimguiname"] = "igImFileClose" defs["igImFileClose"][1]["defaults"] = {} defs["igImFileClose"][1]["funcname"] = "ImFileClose" -defs["igImFileClose"][1]["location"] = "internal" +defs["igImFileClose"][1]["location"] = "imgui_internal:325" defs["igImFileClose"][1]["ov_cimguiname"] = "igImFileClose" defs["igImFileClose"][1]["ret"] = "bool" defs["igImFileClose"][1]["signature"] = "(ImFileHandle)" @@ -13532,7 +13550,7 @@ defs["igImFileGetSize"][1]["call_args"] = "(file)" defs["igImFileGetSize"][1]["cimguiname"] = "igImFileGetSize" defs["igImFileGetSize"][1]["defaults"] = {} defs["igImFileGetSize"][1]["funcname"] = "ImFileGetSize" -defs["igImFileGetSize"][1]["location"] = "internal" +defs["igImFileGetSize"][1]["location"] = "imgui_internal:326" defs["igImFileGetSize"][1]["ov_cimguiname"] = "igImFileGetSize" defs["igImFileGetSize"][1]["ret"] = "ImU64" defs["igImFileGetSize"][1]["signature"] = "(ImFileHandle)" @@ -13558,10 +13576,10 @@ defs["igImFileLoadToMemory"][1]["argsoriginal"] = "(const char* filename,const c defs["igImFileLoadToMemory"][1]["call_args"] = "(filename,mode,out_file_size,padding_bytes)" defs["igImFileLoadToMemory"][1]["cimguiname"] = "igImFileLoadToMemory" defs["igImFileLoadToMemory"][1]["defaults"] = {} -defs["igImFileLoadToMemory"][1]["defaults"]["out_file_size"] = "((void*)0)" +defs["igImFileLoadToMemory"][1]["defaults"]["out_file_size"] = "NULL" defs["igImFileLoadToMemory"][1]["defaults"]["padding_bytes"] = "0" defs["igImFileLoadToMemory"][1]["funcname"] = "ImFileLoadToMemory" -defs["igImFileLoadToMemory"][1]["location"] = "internal" +defs["igImFileLoadToMemory"][1]["location"] = "imgui_internal:332" defs["igImFileLoadToMemory"][1]["ov_cimguiname"] = "igImFileLoadToMemory" defs["igImFileLoadToMemory"][1]["ret"] = "void*" defs["igImFileLoadToMemory"][1]["signature"] = "(const char*,const char*,size_t*,int)" @@ -13582,7 +13600,7 @@ defs["igImFileOpen"][1]["call_args"] = "(filename,mode)" defs["igImFileOpen"][1]["cimguiname"] = "igImFileOpen" defs["igImFileOpen"][1]["defaults"] = {} defs["igImFileOpen"][1]["funcname"] = "ImFileOpen" -defs["igImFileOpen"][1]["location"] = "internal" +defs["igImFileOpen"][1]["location"] = "imgui_internal:324" defs["igImFileOpen"][1]["ov_cimguiname"] = "igImFileOpen" defs["igImFileOpen"][1]["ret"] = "ImFileHandle" defs["igImFileOpen"][1]["signature"] = "(const char*,const char*)" @@ -13609,7 +13627,7 @@ defs["igImFileRead"][1]["call_args"] = "(data,size,count,file)" defs["igImFileRead"][1]["cimguiname"] = "igImFileRead" defs["igImFileRead"][1]["defaults"] = {} defs["igImFileRead"][1]["funcname"] = "ImFileRead" -defs["igImFileRead"][1]["location"] = "internal" +defs["igImFileRead"][1]["location"] = "imgui_internal:327" defs["igImFileRead"][1]["ov_cimguiname"] = "igImFileRead" defs["igImFileRead"][1]["ret"] = "ImU64" defs["igImFileRead"][1]["signature"] = "(void*,ImU64,ImU64,ImFileHandle)" @@ -13636,7 +13654,7 @@ defs["igImFileWrite"][1]["call_args"] = "(data,size,count,file)" defs["igImFileWrite"][1]["cimguiname"] = "igImFileWrite" defs["igImFileWrite"][1]["defaults"] = {} defs["igImFileWrite"][1]["funcname"] = "ImFileWrite" -defs["igImFileWrite"][1]["location"] = "internal" +defs["igImFileWrite"][1]["location"] = "imgui_internal:328" defs["igImFileWrite"][1]["ov_cimguiname"] = "igImFileWrite" defs["igImFileWrite"][1]["ret"] = "ImU64" defs["igImFileWrite"][1]["signature"] = "(const void*,ImU64,ImU64,ImFileHandle)" @@ -13654,7 +13672,7 @@ defs["igImFloor"][1]["call_args"] = "(f)" defs["igImFloor"][1]["cimguiname"] = "igImFloor" defs["igImFloor"][1]["defaults"] = {} defs["igImFloor"][1]["funcname"] = "ImFloor" -defs["igImFloor"][1]["location"] = "internal" +defs["igImFloor"][1]["location"] = "imgui_internal:376" defs["igImFloor"][1]["ov_cimguiname"] = "igImFloorFloat" defs["igImFloor"][1]["ret"] = "float" defs["igImFloor"][1]["signature"] = "(float)" @@ -13673,7 +13691,7 @@ defs["igImFloor"][2]["call_args"] = "(v)" defs["igImFloor"][2]["cimguiname"] = "igImFloor" defs["igImFloor"][2]["defaults"] = {} defs["igImFloor"][2]["funcname"] = "ImFloor" -defs["igImFloor"][2]["location"] = "internal" +defs["igImFloor"][2]["location"] = "imgui_internal:377" defs["igImFloor"][2]["nonUDT"] = 1 defs["igImFloor"][2]["ov_cimguiname"] = "igImFloorVec2" defs["igImFloor"][2]["ret"] = "void" @@ -13693,7 +13711,7 @@ defs["igImFontAtlasBuildFinish"][1]["call_args"] = "(atlas)" defs["igImFontAtlasBuildFinish"][1]["cimguiname"] = "igImFontAtlasBuildFinish" defs["igImFontAtlasBuildFinish"][1]["defaults"] = {} defs["igImFontAtlasBuildFinish"][1]["funcname"] = "ImFontAtlasBuildFinish" -defs["igImFontAtlasBuildFinish"][1]["location"] = "internal" +defs["igImFontAtlasBuildFinish"][1]["location"] = "imgui_internal:2038" defs["igImFontAtlasBuildFinish"][1]["ov_cimguiname"] = "igImFontAtlasBuildFinish" defs["igImFontAtlasBuildFinish"][1]["ret"] = "void" defs["igImFontAtlasBuildFinish"][1]["signature"] = "(ImFontAtlas*)" @@ -13711,7 +13729,7 @@ defs["igImFontAtlasBuildInit"][1]["call_args"] = "(atlas)" defs["igImFontAtlasBuildInit"][1]["cimguiname"] = "igImFontAtlasBuildInit" defs["igImFontAtlasBuildInit"][1]["defaults"] = {} defs["igImFontAtlasBuildInit"][1]["funcname"] = "ImFontAtlasBuildInit" -defs["igImFontAtlasBuildInit"][1]["location"] = "internal" +defs["igImFontAtlasBuildInit"][1]["location"] = "imgui_internal:2035" defs["igImFontAtlasBuildInit"][1]["ov_cimguiname"] = "igImFontAtlasBuildInit" defs["igImFontAtlasBuildInit"][1]["ret"] = "void" defs["igImFontAtlasBuildInit"][1]["signature"] = "(ImFontAtlas*)" @@ -13732,7 +13750,7 @@ defs["igImFontAtlasBuildMultiplyCalcLookupTable"][1]["call_args"] = "(out_table, defs["igImFontAtlasBuildMultiplyCalcLookupTable"][1]["cimguiname"] = "igImFontAtlasBuildMultiplyCalcLookupTable" defs["igImFontAtlasBuildMultiplyCalcLookupTable"][1]["defaults"] = {} defs["igImFontAtlasBuildMultiplyCalcLookupTable"][1]["funcname"] = "ImFontAtlasBuildMultiplyCalcLookupTable" -defs["igImFontAtlasBuildMultiplyCalcLookupTable"][1]["location"] = "internal" +defs["igImFontAtlasBuildMultiplyCalcLookupTable"][1]["location"] = "imgui_internal:2040" defs["igImFontAtlasBuildMultiplyCalcLookupTable"][1]["ov_cimguiname"] = "igImFontAtlasBuildMultiplyCalcLookupTable" defs["igImFontAtlasBuildMultiplyCalcLookupTable"][1]["ret"] = "void" defs["igImFontAtlasBuildMultiplyCalcLookupTable"][1]["signature"] = "(unsigned char[256],float)" @@ -13768,7 +13786,7 @@ defs["igImFontAtlasBuildMultiplyRectAlpha8"][1]["call_args"] = "(table,pixels,x, defs["igImFontAtlasBuildMultiplyRectAlpha8"][1]["cimguiname"] = "igImFontAtlasBuildMultiplyRectAlpha8" defs["igImFontAtlasBuildMultiplyRectAlpha8"][1]["defaults"] = {} defs["igImFontAtlasBuildMultiplyRectAlpha8"][1]["funcname"] = "ImFontAtlasBuildMultiplyRectAlpha8" -defs["igImFontAtlasBuildMultiplyRectAlpha8"][1]["location"] = "internal" +defs["igImFontAtlasBuildMultiplyRectAlpha8"][1]["location"] = "imgui_internal:2041" defs["igImFontAtlasBuildMultiplyRectAlpha8"][1]["ov_cimguiname"] = "igImFontAtlasBuildMultiplyRectAlpha8" defs["igImFontAtlasBuildMultiplyRectAlpha8"][1]["ret"] = "void" defs["igImFontAtlasBuildMultiplyRectAlpha8"][1]["signature"] = "(const unsigned char[256],unsigned char*,int,int,int,int,int)" @@ -13789,7 +13807,7 @@ defs["igImFontAtlasBuildPackCustomRects"][1]["call_args"] = "(atlas,stbrp_contex defs["igImFontAtlasBuildPackCustomRects"][1]["cimguiname"] = "igImFontAtlasBuildPackCustomRects" defs["igImFontAtlasBuildPackCustomRects"][1]["defaults"] = {} defs["igImFontAtlasBuildPackCustomRects"][1]["funcname"] = "ImFontAtlasBuildPackCustomRects" -defs["igImFontAtlasBuildPackCustomRects"][1]["location"] = "internal" +defs["igImFontAtlasBuildPackCustomRects"][1]["location"] = "imgui_internal:2037" defs["igImFontAtlasBuildPackCustomRects"][1]["ov_cimguiname"] = "igImFontAtlasBuildPackCustomRects" defs["igImFontAtlasBuildPackCustomRects"][1]["ret"] = "void" defs["igImFontAtlasBuildPackCustomRects"][1]["signature"] = "(ImFontAtlas*,void*)" @@ -13828,7 +13846,7 @@ defs["igImFontAtlasBuildRender1bppRectFromString"][1]["call_args"] = "(atlas,atl defs["igImFontAtlasBuildRender1bppRectFromString"][1]["cimguiname"] = "igImFontAtlasBuildRender1bppRectFromString" defs["igImFontAtlasBuildRender1bppRectFromString"][1]["defaults"] = {} defs["igImFontAtlasBuildRender1bppRectFromString"][1]["funcname"] = "ImFontAtlasBuildRender1bppRectFromString" -defs["igImFontAtlasBuildRender1bppRectFromString"][1]["location"] = "internal" +defs["igImFontAtlasBuildRender1bppRectFromString"][1]["location"] = "imgui_internal:2039" defs["igImFontAtlasBuildRender1bppRectFromString"][1]["ov_cimguiname"] = "igImFontAtlasBuildRender1bppRectFromString" defs["igImFontAtlasBuildRender1bppRectFromString"][1]["ret"] = "void" defs["igImFontAtlasBuildRender1bppRectFromString"][1]["signature"] = "(ImFontAtlas*,int,int,int,int,const char*,char,unsigned char)" @@ -13858,7 +13876,7 @@ defs["igImFontAtlasBuildSetupFont"][1]["call_args"] = "(atlas,font,font_config,a defs["igImFontAtlasBuildSetupFont"][1]["cimguiname"] = "igImFontAtlasBuildSetupFont" defs["igImFontAtlasBuildSetupFont"][1]["defaults"] = {} defs["igImFontAtlasBuildSetupFont"][1]["funcname"] = "ImFontAtlasBuildSetupFont" -defs["igImFontAtlasBuildSetupFont"][1]["location"] = "internal" +defs["igImFontAtlasBuildSetupFont"][1]["location"] = "imgui_internal:2036" defs["igImFontAtlasBuildSetupFont"][1]["ov_cimguiname"] = "igImFontAtlasBuildSetupFont" defs["igImFontAtlasBuildSetupFont"][1]["ret"] = "void" defs["igImFontAtlasBuildSetupFont"][1]["signature"] = "(ImFontAtlas*,ImFont*,ImFontConfig*,float,float)" @@ -13876,7 +13894,7 @@ defs["igImFontAtlasBuildWithStbTruetype"][1]["call_args"] = "(atlas)" defs["igImFontAtlasBuildWithStbTruetype"][1]["cimguiname"] = "igImFontAtlasBuildWithStbTruetype" defs["igImFontAtlasBuildWithStbTruetype"][1]["defaults"] = {} defs["igImFontAtlasBuildWithStbTruetype"][1]["funcname"] = "ImFontAtlasBuildWithStbTruetype" -defs["igImFontAtlasBuildWithStbTruetype"][1]["location"] = "internal" +defs["igImFontAtlasBuildWithStbTruetype"][1]["location"] = "imgui_internal:2034" defs["igImFontAtlasBuildWithStbTruetype"][1]["ov_cimguiname"] = "igImFontAtlasBuildWithStbTruetype" defs["igImFontAtlasBuildWithStbTruetype"][1]["ret"] = "bool" defs["igImFontAtlasBuildWithStbTruetype"][1]["signature"] = "(ImFontAtlas*)" @@ -13904,7 +13922,7 @@ defs["igImFormatString"][1]["cimguiname"] = "igImFormatString" defs["igImFormatString"][1]["defaults"] = {} defs["igImFormatString"][1]["funcname"] = "ImFormatString" defs["igImFormatString"][1]["isvararg"] = "...)" -defs["igImFormatString"][1]["location"] = "internal" +defs["igImFormatString"][1]["location"] = "imgui_internal:274" defs["igImFormatString"][1]["ov_cimguiname"] = "igImFormatString" defs["igImFormatString"][1]["ret"] = "int" defs["igImFormatString"][1]["signature"] = "(char*,size_t,const char*,...)" @@ -13931,7 +13949,7 @@ defs["igImFormatStringV"][1]["call_args"] = "(buf,buf_size,fmt,args)" defs["igImFormatStringV"][1]["cimguiname"] = "igImFormatStringV" defs["igImFormatStringV"][1]["defaults"] = {} defs["igImFormatStringV"][1]["funcname"] = "ImFormatStringV" -defs["igImFormatStringV"][1]["location"] = "internal" +defs["igImFormatStringV"][1]["location"] = "imgui_internal:275" defs["igImFormatStringV"][1]["ov_cimguiname"] = "igImFormatStringV" defs["igImFormatStringV"][1]["ret"] = "int" defs["igImFormatStringV"][1]["signature"] = "(char*,size_t,const char*,va_list)" @@ -13952,7 +13970,7 @@ defs["igImGetDirQuadrantFromDelta"][1]["call_args"] = "(dx,dy)" defs["igImGetDirQuadrantFromDelta"][1]["cimguiname"] = "igImGetDirQuadrantFromDelta" defs["igImGetDirQuadrantFromDelta"][1]["defaults"] = {} defs["igImGetDirQuadrantFromDelta"][1]["funcname"] = "ImGetDirQuadrantFromDelta" -defs["igImGetDirQuadrantFromDelta"][1]["location"] = "internal" +defs["igImGetDirQuadrantFromDelta"][1]["location"] = "imgui_internal:393" defs["igImGetDirQuadrantFromDelta"][1]["ov_cimguiname"] = "igImGetDirQuadrantFromDelta" defs["igImGetDirQuadrantFromDelta"][1]["ret"] = "ImGuiDir" defs["igImGetDirQuadrantFromDelta"][1]["signature"] = "(float,float)" @@ -13977,7 +13995,7 @@ defs["igImHashData"][1]["cimguiname"] = "igImHashData" defs["igImHashData"][1]["defaults"] = {} defs["igImHashData"][1]["defaults"]["seed"] = "0" defs["igImHashData"][1]["funcname"] = "ImHashData" -defs["igImHashData"][1]["location"] = "internal" +defs["igImHashData"][1]["location"] = "imgui_internal:245" defs["igImHashData"][1]["ov_cimguiname"] = "igImHashData" defs["igImHashData"][1]["ret"] = "ImU32" defs["igImHashData"][1]["signature"] = "(const void*,size_t,ImU32)" @@ -14003,7 +14021,7 @@ defs["igImHashStr"][1]["defaults"] = {} defs["igImHashStr"][1]["defaults"]["data_size"] = "0" defs["igImHashStr"][1]["defaults"]["seed"] = "0" defs["igImHashStr"][1]["funcname"] = "ImHashStr" -defs["igImHashStr"][1]["location"] = "internal" +defs["igImHashStr"][1]["location"] = "imgui_internal:246" defs["igImHashStr"][1]["ov_cimguiname"] = "igImHashStr" defs["igImHashStr"][1]["ret"] = "ImU32" defs["igImHashStr"][1]["signature"] = "(const char*,size_t,ImU32)" @@ -14024,7 +14042,7 @@ defs["igImInvLength"][1]["call_args"] = "(lhs,fail_value)" defs["igImInvLength"][1]["cimguiname"] = "igImInvLength" defs["igImInvLength"][1]["defaults"] = {} defs["igImInvLength"][1]["funcname"] = "ImInvLength" -defs["igImInvLength"][1]["location"] = "internal" +defs["igImInvLength"][1]["location"] = "imgui_internal:375" defs["igImInvLength"][1]["ov_cimguiname"] = "igImInvLength" defs["igImInvLength"][1]["ret"] = "float" defs["igImInvLength"][1]["signature"] = "(const ImVec2,float)" @@ -14042,7 +14060,7 @@ defs["igImIsPowerOfTwo"][1]["call_args"] = "(v)" defs["igImIsPowerOfTwo"][1]["cimguiname"] = "igImIsPowerOfTwo" defs["igImIsPowerOfTwo"][1]["defaults"] = {} defs["igImIsPowerOfTwo"][1]["funcname"] = "ImIsPowerOfTwo" -defs["igImIsPowerOfTwo"][1]["location"] = "internal" +defs["igImIsPowerOfTwo"][1]["location"] = "imgui_internal:258" defs["igImIsPowerOfTwo"][1]["ov_cimguiname"] = "igImIsPowerOfTwo" defs["igImIsPowerOfTwo"][1]["ret"] = "bool" defs["igImIsPowerOfTwo"][1]["signature"] = "(int)" @@ -14060,7 +14078,7 @@ defs["igImLengthSqr"][1]["call_args"] = "(lhs)" defs["igImLengthSqr"][1]["cimguiname"] = "igImLengthSqr" defs["igImLengthSqr"][1]["defaults"] = {} defs["igImLengthSqr"][1]["funcname"] = "ImLengthSqr" -defs["igImLengthSqr"][1]["location"] = "internal" +defs["igImLengthSqr"][1]["location"] = "imgui_internal:373" defs["igImLengthSqr"][1]["ov_cimguiname"] = "igImLengthSqrVec2" defs["igImLengthSqr"][1]["ret"] = "float" defs["igImLengthSqr"][1]["signature"] = "(const ImVec2)" @@ -14076,7 +14094,7 @@ defs["igImLengthSqr"][2]["call_args"] = "(lhs)" defs["igImLengthSqr"][2]["cimguiname"] = "igImLengthSqr" defs["igImLengthSqr"][2]["defaults"] = {} defs["igImLengthSqr"][2]["funcname"] = "ImLengthSqr" -defs["igImLengthSqr"][2]["location"] = "internal" +defs["igImLengthSqr"][2]["location"] = "imgui_internal:374" defs["igImLengthSqr"][2]["ov_cimguiname"] = "igImLengthSqrVec4" defs["igImLengthSqr"][2]["ret"] = "float" defs["igImLengthSqr"][2]["signature"] = "(const ImVec4)" @@ -14104,7 +14122,7 @@ defs["igImLerp"][1]["call_args"] = "(a,b,t)" defs["igImLerp"][1]["cimguiname"] = "igImLerp" defs["igImLerp"][1]["defaults"] = {} defs["igImLerp"][1]["funcname"] = "ImLerp" -defs["igImLerp"][1]["location"] = "internal" +defs["igImLerp"][1]["location"] = "imgui_internal:369" defs["igImLerp"][1]["nonUDT"] = 1 defs["igImLerp"][1]["ov_cimguiname"] = "igImLerpVec2Float" defs["igImLerp"][1]["ret"] = "void" @@ -14130,7 +14148,7 @@ defs["igImLerp"][2]["call_args"] = "(a,b,t)" defs["igImLerp"][2]["cimguiname"] = "igImLerp" defs["igImLerp"][2]["defaults"] = {} defs["igImLerp"][2]["funcname"] = "ImLerp" -defs["igImLerp"][2]["location"] = "internal" +defs["igImLerp"][2]["location"] = "imgui_internal:370" defs["igImLerp"][2]["nonUDT"] = 1 defs["igImLerp"][2]["ov_cimguiname"] = "igImLerpVec2Vec2" defs["igImLerp"][2]["ret"] = "void" @@ -14156,7 +14174,7 @@ defs["igImLerp"][3]["call_args"] = "(a,b,t)" defs["igImLerp"][3]["cimguiname"] = "igImLerp" defs["igImLerp"][3]["defaults"] = {} defs["igImLerp"][3]["funcname"] = "ImLerp" -defs["igImLerp"][3]["location"] = "internal" +defs["igImLerp"][3]["location"] = "imgui_internal:371" defs["igImLerp"][3]["nonUDT"] = 1 defs["igImLerp"][3]["ov_cimguiname"] = "igImLerpVec4" defs["igImLerp"][3]["ret"] = "void" @@ -14186,7 +14204,7 @@ defs["igImLineClosestPoint"][1]["call_args"] = "(a,b,p)" defs["igImLineClosestPoint"][1]["cimguiname"] = "igImLineClosestPoint" defs["igImLineClosestPoint"][1]["defaults"] = {} defs["igImLineClosestPoint"][1]["funcname"] = "ImLineClosestPoint" -defs["igImLineClosestPoint"][1]["location"] = "internal" +defs["igImLineClosestPoint"][1]["location"] = "imgui_internal:388" defs["igImLineClosestPoint"][1]["nonUDT"] = 1 defs["igImLineClosestPoint"][1]["ov_cimguiname"] = "igImLineClosestPoint" defs["igImLineClosestPoint"][1]["ret"] = "void" @@ -14211,7 +14229,7 @@ defs["igImLinearSweep"][1]["call_args"] = "(current,target,speed)" defs["igImLinearSweep"][1]["cimguiname"] = "igImLinearSweep" defs["igImLinearSweep"][1]["defaults"] = {} defs["igImLinearSweep"][1]["funcname"] = "ImLinearSweep" -defs["igImLinearSweep"][1]["location"] = "internal" +defs["igImLinearSweep"][1]["location"] = "imgui_internal:381" defs["igImLinearSweep"][1]["ov_cimguiname"] = "igImLinearSweep" defs["igImLinearSweep"][1]["ret"] = "float" defs["igImLinearSweep"][1]["signature"] = "(float,float,float)" @@ -14229,7 +14247,7 @@ defs["igImLog"][1]["call_args"] = "(x)" defs["igImLog"][1]["cimguiname"] = "igImLog" defs["igImLog"][1]["defaults"] = {} defs["igImLog"][1]["funcname"] = "ImLog" -defs["igImLog"][1]["location"] = "internal" +defs["igImLog"][1]["location"] = "imgui_internal:349" defs["igImLog"][1]["ov_cimguiname"] = "igImLogFloat" defs["igImLog"][1]["ret"] = "float" defs["igImLog"][1]["signature"] = "(float)" @@ -14245,7 +14263,7 @@ defs["igImLog"][2]["call_args"] = "(x)" defs["igImLog"][2]["cimguiname"] = "igImLog" defs["igImLog"][2]["defaults"] = {} defs["igImLog"][2]["funcname"] = "ImLog" -defs["igImLog"][2]["location"] = "internal" +defs["igImLog"][2]["location"] = "imgui_internal:350" defs["igImLog"][2]["ov_cimguiname"] = "igImLogdouble" defs["igImLog"][2]["ret"] = "double" defs["igImLog"][2]["signature"] = "(double)" @@ -14270,7 +14288,7 @@ defs["igImMax"][1]["call_args"] = "(lhs,rhs)" defs["igImMax"][1]["cimguiname"] = "igImMax" defs["igImMax"][1]["defaults"] = {} defs["igImMax"][1]["funcname"] = "ImMax" -defs["igImMax"][1]["location"] = "internal" +defs["igImMax"][1]["location"] = "imgui_internal:367" defs["igImMax"][1]["nonUDT"] = 1 defs["igImMax"][1]["ov_cimguiname"] = "igImMax" defs["igImMax"][1]["ret"] = "void" @@ -14295,7 +14313,7 @@ defs["igImMin"][1]["call_args"] = "(lhs,rhs)" defs["igImMin"][1]["cimguiname"] = "igImMin" defs["igImMin"][1]["defaults"] = {} defs["igImMin"][1]["funcname"] = "ImMin" -defs["igImMin"][1]["location"] = "internal" +defs["igImMin"][1]["location"] = "imgui_internal:366" defs["igImMin"][1]["nonUDT"] = 1 defs["igImMin"][1]["ov_cimguiname"] = "igImMin" defs["igImMin"][1]["ret"] = "void" @@ -14317,7 +14335,7 @@ defs["igImModPositive"][1]["call_args"] = "(a,b)" defs["igImModPositive"][1]["cimguiname"] = "igImModPositive" defs["igImModPositive"][1]["defaults"] = {} defs["igImModPositive"][1]["funcname"] = "ImModPositive" -defs["igImModPositive"][1]["location"] = "internal" +defs["igImModPositive"][1]["location"] = "imgui_internal:378" defs["igImModPositive"][1]["ov_cimguiname"] = "igImModPositive" defs["igImModPositive"][1]["ret"] = "int" defs["igImModPositive"][1]["signature"] = "(int,int)" @@ -14341,7 +14359,7 @@ defs["igImMul"][1]["call_args"] = "(lhs,rhs)" defs["igImMul"][1]["cimguiname"] = "igImMul" defs["igImMul"][1]["defaults"] = {} defs["igImMul"][1]["funcname"] = "ImMul" -defs["igImMul"][1]["location"] = "internal" +defs["igImMul"][1]["location"] = "imgui_internal:382" defs["igImMul"][1]["nonUDT"] = 1 defs["igImMul"][1]["ov_cimguiname"] = "igImMul" defs["igImMul"][1]["ret"] = "void" @@ -14360,7 +14378,7 @@ defs["igImParseFormatFindEnd"][1]["call_args"] = "(format)" defs["igImParseFormatFindEnd"][1]["cimguiname"] = "igImParseFormatFindEnd" defs["igImParseFormatFindEnd"][1]["defaults"] = {} defs["igImParseFormatFindEnd"][1]["funcname"] = "ImParseFormatFindEnd" -defs["igImParseFormatFindEnd"][1]["location"] = "internal" +defs["igImParseFormatFindEnd"][1]["location"] = "imgui_internal:277" defs["igImParseFormatFindEnd"][1]["ov_cimguiname"] = "igImParseFormatFindEnd" defs["igImParseFormatFindEnd"][1]["ret"] = "const char*" defs["igImParseFormatFindEnd"][1]["signature"] = "(const char*)" @@ -14378,7 +14396,7 @@ defs["igImParseFormatFindStart"][1]["call_args"] = "(format)" defs["igImParseFormatFindStart"][1]["cimguiname"] = "igImParseFormatFindStart" defs["igImParseFormatFindStart"][1]["defaults"] = {} defs["igImParseFormatFindStart"][1]["funcname"] = "ImParseFormatFindStart" -defs["igImParseFormatFindStart"][1]["location"] = "internal" +defs["igImParseFormatFindStart"][1]["location"] = "imgui_internal:276" defs["igImParseFormatFindStart"][1]["ov_cimguiname"] = "igImParseFormatFindStart" defs["igImParseFormatFindStart"][1]["ret"] = "const char*" defs["igImParseFormatFindStart"][1]["signature"] = "(const char*)" @@ -14399,7 +14417,7 @@ defs["igImParseFormatPrecision"][1]["call_args"] = "(format,default_value)" defs["igImParseFormatPrecision"][1]["cimguiname"] = "igImParseFormatPrecision" defs["igImParseFormatPrecision"][1]["defaults"] = {} defs["igImParseFormatPrecision"][1]["funcname"] = "ImParseFormatPrecision" -defs["igImParseFormatPrecision"][1]["location"] = "internal" +defs["igImParseFormatPrecision"][1]["location"] = "imgui_internal:279" defs["igImParseFormatPrecision"][1]["ov_cimguiname"] = "igImParseFormatPrecision" defs["igImParseFormatPrecision"][1]["ret"] = "int" defs["igImParseFormatPrecision"][1]["signature"] = "(const char*,int)" @@ -14423,7 +14441,7 @@ defs["igImParseFormatTrimDecorations"][1]["call_args"] = "(format,buf,buf_size)" defs["igImParseFormatTrimDecorations"][1]["cimguiname"] = "igImParseFormatTrimDecorations" defs["igImParseFormatTrimDecorations"][1]["defaults"] = {} defs["igImParseFormatTrimDecorations"][1]["funcname"] = "ImParseFormatTrimDecorations" -defs["igImParseFormatTrimDecorations"][1]["location"] = "internal" +defs["igImParseFormatTrimDecorations"][1]["location"] = "imgui_internal:278" defs["igImParseFormatTrimDecorations"][1]["ov_cimguiname"] = "igImParseFormatTrimDecorations" defs["igImParseFormatTrimDecorations"][1]["ret"] = "const char*" defs["igImParseFormatTrimDecorations"][1]["signature"] = "(const char*,char*,size_t)" @@ -14444,7 +14462,7 @@ defs["igImPow"][1]["call_args"] = "(x,y)" defs["igImPow"][1]["cimguiname"] = "igImPow" defs["igImPow"][1]["defaults"] = {} defs["igImPow"][1]["funcname"] = "ImPow" -defs["igImPow"][1]["location"] = "internal" +defs["igImPow"][1]["location"] = "imgui_internal:347" defs["igImPow"][1]["ov_cimguiname"] = "igImPowFloat" defs["igImPow"][1]["ret"] = "float" defs["igImPow"][1]["signature"] = "(float,float)" @@ -14463,7 +14481,7 @@ defs["igImPow"][2]["call_args"] = "(x,y)" defs["igImPow"][2]["cimguiname"] = "igImPow" defs["igImPow"][2]["defaults"] = {} defs["igImPow"][2]["funcname"] = "ImPow" -defs["igImPow"][2]["location"] = "internal" +defs["igImPow"][2]["location"] = "imgui_internal:348" defs["igImPow"][2]["ov_cimguiname"] = "igImPowdouble" defs["igImPow"][2]["ret"] = "double" defs["igImPow"][2]["signature"] = "(double,double)" @@ -14491,7 +14509,7 @@ defs["igImRotate"][1]["call_args"] = "(v,cos_a,sin_a)" defs["igImRotate"][1]["cimguiname"] = "igImRotate" defs["igImRotate"][1]["defaults"] = {} defs["igImRotate"][1]["funcname"] = "ImRotate" -defs["igImRotate"][1]["location"] = "internal" +defs["igImRotate"][1]["location"] = "imgui_internal:380" defs["igImRotate"][1]["nonUDT"] = 1 defs["igImRotate"][1]["ov_cimguiname"] = "igImRotate" defs["igImRotate"][1]["ret"] = "void" @@ -14510,7 +14528,7 @@ defs["igImSaturate"][1]["call_args"] = "(f)" defs["igImSaturate"][1]["cimguiname"] = "igImSaturate" defs["igImSaturate"][1]["defaults"] = {} defs["igImSaturate"][1]["funcname"] = "ImSaturate" -defs["igImSaturate"][1]["location"] = "internal" +defs["igImSaturate"][1]["location"] = "imgui_internal:372" defs["igImSaturate"][1]["ov_cimguiname"] = "igImSaturate" defs["igImSaturate"][1]["ret"] = "float" defs["igImSaturate"][1]["signature"] = "(float)" @@ -14528,7 +14546,7 @@ defs["igImSign"][1]["call_args"] = "(x)" defs["igImSign"][1]["cimguiname"] = "igImSign" defs["igImSign"][1]["defaults"] = {} defs["igImSign"][1]["funcname"] = "ImSign" -defs["igImSign"][1]["location"] = "internal" +defs["igImSign"][1]["location"] = "imgui_internal:353" defs["igImSign"][1]["ov_cimguiname"] = "igImSignFloat" defs["igImSign"][1]["ret"] = "float" defs["igImSign"][1]["signature"] = "(float)" @@ -14544,7 +14562,7 @@ defs["igImSign"][2]["call_args"] = "(x)" defs["igImSign"][2]["cimguiname"] = "igImSign" defs["igImSign"][2]["defaults"] = {} defs["igImSign"][2]["funcname"] = "ImSign" -defs["igImSign"][2]["location"] = "internal" +defs["igImSign"][2]["location"] = "imgui_internal:354" defs["igImSign"][2]["ov_cimguiname"] = "igImSigndouble" defs["igImSign"][2]["ret"] = "double" defs["igImSign"][2]["signature"] = "(double)" @@ -14563,7 +14581,7 @@ defs["igImStrSkipBlank"][1]["call_args"] = "(str)" defs["igImStrSkipBlank"][1]["cimguiname"] = "igImStrSkipBlank" defs["igImStrSkipBlank"][1]["defaults"] = {} defs["igImStrSkipBlank"][1]["funcname"] = "ImStrSkipBlank" -defs["igImStrSkipBlank"][1]["location"] = "internal" +defs["igImStrSkipBlank"][1]["location"] = "imgui_internal:273" defs["igImStrSkipBlank"][1]["ov_cimguiname"] = "igImStrSkipBlank" defs["igImStrSkipBlank"][1]["ret"] = "const char*" defs["igImStrSkipBlank"][1]["signature"] = "(const char*)" @@ -14581,7 +14599,7 @@ defs["igImStrTrimBlanks"][1]["call_args"] = "(str)" defs["igImStrTrimBlanks"][1]["cimguiname"] = "igImStrTrimBlanks" defs["igImStrTrimBlanks"][1]["defaults"] = {} defs["igImStrTrimBlanks"][1]["funcname"] = "ImStrTrimBlanks" -defs["igImStrTrimBlanks"][1]["location"] = "internal" +defs["igImStrTrimBlanks"][1]["location"] = "imgui_internal:272" defs["igImStrTrimBlanks"][1]["ov_cimguiname"] = "igImStrTrimBlanks" defs["igImStrTrimBlanks"][1]["ret"] = "void" defs["igImStrTrimBlanks"][1]["signature"] = "(char*)" @@ -14602,7 +14620,7 @@ defs["igImStrbolW"][1]["call_args"] = "(buf_mid_line,buf_begin)" defs["igImStrbolW"][1]["cimguiname"] = "igImStrbolW" defs["igImStrbolW"][1]["defaults"] = {} defs["igImStrbolW"][1]["funcname"] = "ImStrbolW" -defs["igImStrbolW"][1]["location"] = "internal" +defs["igImStrbolW"][1]["location"] = "imgui_internal:270" defs["igImStrbolW"][1]["ov_cimguiname"] = "igImStrbolW" defs["igImStrbolW"][1]["ret"] = "const ImWchar*" defs["igImStrbolW"][1]["signature"] = "(const ImWchar*,const ImWchar*)" @@ -14626,7 +14644,7 @@ defs["igImStrchrRange"][1]["call_args"] = "(str_begin,str_end,c)" defs["igImStrchrRange"][1]["cimguiname"] = "igImStrchrRange" defs["igImStrchrRange"][1]["defaults"] = {} defs["igImStrchrRange"][1]["funcname"] = "ImStrchrRange" -defs["igImStrchrRange"][1]["location"] = "internal" +defs["igImStrchrRange"][1]["location"] = "imgui_internal:267" defs["igImStrchrRange"][1]["ov_cimguiname"] = "igImStrchrRange" defs["igImStrchrRange"][1]["ret"] = "const char*" defs["igImStrchrRange"][1]["signature"] = "(const char*,const char*,char)" @@ -14644,7 +14662,7 @@ defs["igImStrdup"][1]["call_args"] = "(str)" defs["igImStrdup"][1]["cimguiname"] = "igImStrdup" defs["igImStrdup"][1]["defaults"] = {} defs["igImStrdup"][1]["funcname"] = "ImStrdup" -defs["igImStrdup"][1]["location"] = "internal" +defs["igImStrdup"][1]["location"] = "imgui_internal:265" defs["igImStrdup"][1]["ov_cimguiname"] = "igImStrdup" defs["igImStrdup"][1]["ret"] = "char*" defs["igImStrdup"][1]["signature"] = "(const char*)" @@ -14668,7 +14686,7 @@ defs["igImStrdupcpy"][1]["call_args"] = "(dst,p_dst_size,str)" defs["igImStrdupcpy"][1]["cimguiname"] = "igImStrdupcpy" defs["igImStrdupcpy"][1]["defaults"] = {} defs["igImStrdupcpy"][1]["funcname"] = "ImStrdupcpy" -defs["igImStrdupcpy"][1]["location"] = "internal" +defs["igImStrdupcpy"][1]["location"] = "imgui_internal:266" defs["igImStrdupcpy"][1]["ov_cimguiname"] = "igImStrdupcpy" defs["igImStrdupcpy"][1]["ret"] = "char*" defs["igImStrdupcpy"][1]["signature"] = "(char*,size_t*,const char*)" @@ -14689,7 +14707,7 @@ defs["igImStreolRange"][1]["call_args"] = "(str,str_end)" defs["igImStreolRange"][1]["cimguiname"] = "igImStreolRange" defs["igImStreolRange"][1]["defaults"] = {} defs["igImStreolRange"][1]["funcname"] = "ImStreolRange" -defs["igImStreolRange"][1]["location"] = "internal" +defs["igImStreolRange"][1]["location"] = "imgui_internal:269" defs["igImStreolRange"][1]["ov_cimguiname"] = "igImStreolRange" defs["igImStreolRange"][1]["ret"] = "const char*" defs["igImStreolRange"][1]["signature"] = "(const char*,const char*)" @@ -14710,7 +14728,7 @@ defs["igImStricmp"][1]["call_args"] = "(str1,str2)" defs["igImStricmp"][1]["cimguiname"] = "igImStricmp" defs["igImStricmp"][1]["defaults"] = {} defs["igImStricmp"][1]["funcname"] = "ImStricmp" -defs["igImStricmp"][1]["location"] = "internal" +defs["igImStricmp"][1]["location"] = "imgui_internal:262" defs["igImStricmp"][1]["ov_cimguiname"] = "igImStricmp" defs["igImStricmp"][1]["ret"] = "int" defs["igImStricmp"][1]["signature"] = "(const char*,const char*)" @@ -14737,7 +14755,7 @@ defs["igImStristr"][1]["call_args"] = "(haystack,haystack_end,needle,needle_end) defs["igImStristr"][1]["cimguiname"] = "igImStristr" defs["igImStristr"][1]["defaults"] = {} defs["igImStristr"][1]["funcname"] = "ImStristr" -defs["igImStristr"][1]["location"] = "internal" +defs["igImStristr"][1]["location"] = "imgui_internal:271" defs["igImStristr"][1]["ov_cimguiname"] = "igImStristr" defs["igImStristr"][1]["ret"] = "const char*" defs["igImStristr"][1]["signature"] = "(const char*,const char*,const char*,const char*)" @@ -14755,7 +14773,7 @@ defs["igImStrlenW"][1]["call_args"] = "(str)" defs["igImStrlenW"][1]["cimguiname"] = "igImStrlenW" defs["igImStrlenW"][1]["defaults"] = {} defs["igImStrlenW"][1]["funcname"] = "ImStrlenW" -defs["igImStrlenW"][1]["location"] = "internal" +defs["igImStrlenW"][1]["location"] = "imgui_internal:268" defs["igImStrlenW"][1]["ov_cimguiname"] = "igImStrlenW" defs["igImStrlenW"][1]["ret"] = "int" defs["igImStrlenW"][1]["signature"] = "(const ImWchar*)" @@ -14779,7 +14797,7 @@ defs["igImStrncpy"][1]["call_args"] = "(dst,src,count)" defs["igImStrncpy"][1]["cimguiname"] = "igImStrncpy" defs["igImStrncpy"][1]["defaults"] = {} defs["igImStrncpy"][1]["funcname"] = "ImStrncpy" -defs["igImStrncpy"][1]["location"] = "internal" +defs["igImStrncpy"][1]["location"] = "imgui_internal:264" defs["igImStrncpy"][1]["ov_cimguiname"] = "igImStrncpy" defs["igImStrncpy"][1]["ret"] = "void" defs["igImStrncpy"][1]["signature"] = "(char*,const char*,size_t)" @@ -14803,7 +14821,7 @@ defs["igImStrnicmp"][1]["call_args"] = "(str1,str2,count)" defs["igImStrnicmp"][1]["cimguiname"] = "igImStrnicmp" defs["igImStrnicmp"][1]["defaults"] = {} defs["igImStrnicmp"][1]["funcname"] = "ImStrnicmp" -defs["igImStrnicmp"][1]["location"] = "internal" +defs["igImStrnicmp"][1]["location"] = "imgui_internal:263" defs["igImStrnicmp"][1]["ov_cimguiname"] = "igImStrnicmp" defs["igImStrnicmp"][1]["ret"] = "int" defs["igImStrnicmp"][1]["signature"] = "(const char*,const char*,size_t)" @@ -14827,7 +14845,7 @@ defs["igImTextCharFromUtf8"][1]["call_args"] = "(out_char,in_text,in_text_end)" defs["igImTextCharFromUtf8"][1]["cimguiname"] = "igImTextCharFromUtf8" defs["igImTextCharFromUtf8"][1]["defaults"] = {} defs["igImTextCharFromUtf8"][1]["funcname"] = "ImTextCharFromUtf8" -defs["igImTextCharFromUtf8"][1]["location"] = "internal" +defs["igImTextCharFromUtf8"][1]["location"] = "imgui_internal:285" defs["igImTextCharFromUtf8"][1]["ov_cimguiname"] = "igImTextCharFromUtf8" defs["igImTextCharFromUtf8"][1]["ret"] = "int" defs["igImTextCharFromUtf8"][1]["signature"] = "(unsigned int*,const char*,const char*)" @@ -14848,7 +14866,7 @@ defs["igImTextCountCharsFromUtf8"][1]["call_args"] = "(in_text,in_text_end)" defs["igImTextCountCharsFromUtf8"][1]["cimguiname"] = "igImTextCountCharsFromUtf8" defs["igImTextCountCharsFromUtf8"][1]["defaults"] = {} defs["igImTextCountCharsFromUtf8"][1]["funcname"] = "ImTextCountCharsFromUtf8" -defs["igImTextCountCharsFromUtf8"][1]["location"] = "internal" +defs["igImTextCountCharsFromUtf8"][1]["location"] = "imgui_internal:287" defs["igImTextCountCharsFromUtf8"][1]["ov_cimguiname"] = "igImTextCountCharsFromUtf8" defs["igImTextCountCharsFromUtf8"][1]["ret"] = "int" defs["igImTextCountCharsFromUtf8"][1]["signature"] = "(const char*,const char*)" @@ -14869,7 +14887,7 @@ defs["igImTextCountUtf8BytesFromChar"][1]["call_args"] = "(in_text,in_text_end)" defs["igImTextCountUtf8BytesFromChar"][1]["cimguiname"] = "igImTextCountUtf8BytesFromChar" defs["igImTextCountUtf8BytesFromChar"][1]["defaults"] = {} defs["igImTextCountUtf8BytesFromChar"][1]["funcname"] = "ImTextCountUtf8BytesFromChar" -defs["igImTextCountUtf8BytesFromChar"][1]["location"] = "internal" +defs["igImTextCountUtf8BytesFromChar"][1]["location"] = "imgui_internal:288" defs["igImTextCountUtf8BytesFromChar"][1]["ov_cimguiname"] = "igImTextCountUtf8BytesFromChar" defs["igImTextCountUtf8BytesFromChar"][1]["ret"] = "int" defs["igImTextCountUtf8BytesFromChar"][1]["signature"] = "(const char*,const char*)" @@ -14890,7 +14908,7 @@ defs["igImTextCountUtf8BytesFromStr"][1]["call_args"] = "(in_text,in_text_end)" defs["igImTextCountUtf8BytesFromStr"][1]["cimguiname"] = "igImTextCountUtf8BytesFromStr" defs["igImTextCountUtf8BytesFromStr"][1]["defaults"] = {} defs["igImTextCountUtf8BytesFromStr"][1]["funcname"] = "ImTextCountUtf8BytesFromStr" -defs["igImTextCountUtf8BytesFromStr"][1]["location"] = "internal" +defs["igImTextCountUtf8BytesFromStr"][1]["location"] = "imgui_internal:289" defs["igImTextCountUtf8BytesFromStr"][1]["ov_cimguiname"] = "igImTextCountUtf8BytesFromStr" defs["igImTextCountUtf8BytesFromStr"][1]["ret"] = "int" defs["igImTextCountUtf8BytesFromStr"][1]["signature"] = "(const ImWchar*,const ImWchar*)" @@ -14919,9 +14937,9 @@ defs["igImTextStrFromUtf8"][1]["argsoriginal"] = "(ImWchar* buf,int buf_size,con defs["igImTextStrFromUtf8"][1]["call_args"] = "(buf,buf_size,in_text,in_text_end,in_remaining)" defs["igImTextStrFromUtf8"][1]["cimguiname"] = "igImTextStrFromUtf8" defs["igImTextStrFromUtf8"][1]["defaults"] = {} -defs["igImTextStrFromUtf8"][1]["defaults"]["in_remaining"] = "((void*)0)" +defs["igImTextStrFromUtf8"][1]["defaults"]["in_remaining"] = "NULL" defs["igImTextStrFromUtf8"][1]["funcname"] = "ImTextStrFromUtf8" -defs["igImTextStrFromUtf8"][1]["location"] = "internal" +defs["igImTextStrFromUtf8"][1]["location"] = "imgui_internal:286" defs["igImTextStrFromUtf8"][1]["ov_cimguiname"] = "igImTextStrFromUtf8" defs["igImTextStrFromUtf8"][1]["ret"] = "int" defs["igImTextStrFromUtf8"][1]["signature"] = "(ImWchar*,int,const char*,const char*,const char**)" @@ -14948,7 +14966,7 @@ defs["igImTextStrToUtf8"][1]["call_args"] = "(buf,buf_size,in_text,in_text_end)" defs["igImTextStrToUtf8"][1]["cimguiname"] = "igImTextStrToUtf8" defs["igImTextStrToUtf8"][1]["defaults"] = {} defs["igImTextStrToUtf8"][1]["funcname"] = "ImTextStrToUtf8" -defs["igImTextStrToUtf8"][1]["location"] = "internal" +defs["igImTextStrToUtf8"][1]["location"] = "imgui_internal:284" defs["igImTextStrToUtf8"][1]["ov_cimguiname"] = "igImTextStrToUtf8" defs["igImTextStrToUtf8"][1]["ret"] = "int" defs["igImTextStrToUtf8"][1]["signature"] = "(char*,int,const ImWchar*,const ImWchar*)" @@ -14972,7 +14990,7 @@ defs["igImTriangleArea"][1]["call_args"] = "(a,b,c)" defs["igImTriangleArea"][1]["cimguiname"] = "igImTriangleArea" defs["igImTriangleArea"][1]["defaults"] = {} defs["igImTriangleArea"][1]["funcname"] = "ImTriangleArea" -defs["igImTriangleArea"][1]["location"] = "internal" +defs["igImTriangleArea"][1]["location"] = "imgui_internal:392" defs["igImTriangleArea"][1]["ov_cimguiname"] = "igImTriangleArea" defs["igImTriangleArea"][1]["ret"] = "float" defs["igImTriangleArea"][1]["signature"] = "(const ImVec2,const ImVec2,const ImVec2)" @@ -15011,7 +15029,7 @@ defs["igImTriangleBarycentricCoords"][1]["call_args"] = "(a,b,c,p,*out_u,*out_v, defs["igImTriangleBarycentricCoords"][1]["cimguiname"] = "igImTriangleBarycentricCoords" defs["igImTriangleBarycentricCoords"][1]["defaults"] = {} defs["igImTriangleBarycentricCoords"][1]["funcname"] = "ImTriangleBarycentricCoords" -defs["igImTriangleBarycentricCoords"][1]["location"] = "internal" +defs["igImTriangleBarycentricCoords"][1]["location"] = "imgui_internal:391" defs["igImTriangleBarycentricCoords"][1]["ov_cimguiname"] = "igImTriangleBarycentricCoords" defs["igImTriangleBarycentricCoords"][1]["ret"] = "void" defs["igImTriangleBarycentricCoords"][1]["signature"] = "(const ImVec2,const ImVec2,const ImVec2,const ImVec2,float*,float*,float*)" @@ -15041,7 +15059,7 @@ defs["igImTriangleClosestPoint"][1]["call_args"] = "(a,b,c,p)" defs["igImTriangleClosestPoint"][1]["cimguiname"] = "igImTriangleClosestPoint" defs["igImTriangleClosestPoint"][1]["defaults"] = {} defs["igImTriangleClosestPoint"][1]["funcname"] = "ImTriangleClosestPoint" -defs["igImTriangleClosestPoint"][1]["location"] = "internal" +defs["igImTriangleClosestPoint"][1]["location"] = "imgui_internal:390" defs["igImTriangleClosestPoint"][1]["nonUDT"] = 1 defs["igImTriangleClosestPoint"][1]["ov_cimguiname"] = "igImTriangleClosestPoint" defs["igImTriangleClosestPoint"][1]["ret"] = "void" @@ -15069,7 +15087,7 @@ defs["igImTriangleContainsPoint"][1]["call_args"] = "(a,b,c,p)" defs["igImTriangleContainsPoint"][1]["cimguiname"] = "igImTriangleContainsPoint" defs["igImTriangleContainsPoint"][1]["defaults"] = {} defs["igImTriangleContainsPoint"][1]["funcname"] = "ImTriangleContainsPoint" -defs["igImTriangleContainsPoint"][1]["location"] = "internal" +defs["igImTriangleContainsPoint"][1]["location"] = "imgui_internal:389" defs["igImTriangleContainsPoint"][1]["ov_cimguiname"] = "igImTriangleContainsPoint" defs["igImTriangleContainsPoint"][1]["ret"] = "bool" defs["igImTriangleContainsPoint"][1]["signature"] = "(const ImVec2,const ImVec2,const ImVec2,const ImVec2)" @@ -15087,7 +15105,7 @@ defs["igImUpperPowerOfTwo"][1]["call_args"] = "(v)" defs["igImUpperPowerOfTwo"][1]["cimguiname"] = "igImUpperPowerOfTwo" defs["igImUpperPowerOfTwo"][1]["defaults"] = {} defs["igImUpperPowerOfTwo"][1]["funcname"] = "ImUpperPowerOfTwo" -defs["igImUpperPowerOfTwo"][1]["location"] = "internal" +defs["igImUpperPowerOfTwo"][1]["location"] = "imgui_internal:259" defs["igImUpperPowerOfTwo"][1]["ov_cimguiname"] = "igImUpperPowerOfTwo" defs["igImUpperPowerOfTwo"][1]["ret"] = "int" defs["igImUpperPowerOfTwo"][1]["signature"] = "(int)" @@ -15124,7 +15142,7 @@ defs["igImage"][1]["defaults"]["tint_col"] = "ImVec4(1,1,1,1)" defs["igImage"][1]["defaults"]["uv0"] = "ImVec2(0,0)" defs["igImage"][1]["defaults"]["uv1"] = "ImVec2(1,1)" defs["igImage"][1]["funcname"] = "Image" -defs["igImage"][1]["location"] = "imgui" +defs["igImage"][1]["location"] = "imgui:444" defs["igImage"][1]["namespace"] = "ImGui" defs["igImage"][1]["ov_cimguiname"] = "igImage" defs["igImage"][1]["ret"] = "void" @@ -15166,7 +15184,7 @@ defs["igImageButton"][1]["defaults"]["tint_col"] = "ImVec4(1,1,1,1)" defs["igImageButton"][1]["defaults"]["uv0"] = "ImVec2(0,0)" defs["igImageButton"][1]["defaults"]["uv1"] = "ImVec2(1,1)" defs["igImageButton"][1]["funcname"] = "ImageButton" -defs["igImageButton"][1]["location"] = "imgui" +defs["igImageButton"][1]["location"] = "imgui:445" defs["igImageButton"][1]["namespace"] = "ImGui" defs["igImageButton"][1]["ov_cimguiname"] = "igImageButton" defs["igImageButton"][1]["ret"] = "bool" @@ -15206,7 +15224,7 @@ defs["igImageButtonEx"][1]["call_args"] = "(id,texture_id,size,uv0,uv1,padding,b defs["igImageButtonEx"][1]["cimguiname"] = "igImageButtonEx" defs["igImageButtonEx"][1]["defaults"] = {} defs["igImageButtonEx"][1]["funcname"] = "ImageButtonEx" -defs["igImageButtonEx"][1]["location"] = "internal" +defs["igImageButtonEx"][1]["location"] = "imgui_internal:1973" defs["igImageButtonEx"][1]["namespace"] = "ImGui" defs["igImageButtonEx"][1]["ov_cimguiname"] = "igImageButtonEx" defs["igImageButtonEx"][1]["ret"] = "bool" @@ -15226,7 +15244,7 @@ defs["igIndent"][1]["cimguiname"] = "igIndent" defs["igIndent"][1]["defaults"] = {} defs["igIndent"][1]["defaults"]["indent_w"] = "0.0f" defs["igIndent"][1]["funcname"] = "Indent" -defs["igIndent"][1]["location"] = "imgui" +defs["igIndent"][1]["location"] = "imgui:387" defs["igIndent"][1]["namespace"] = "ImGui" defs["igIndent"][1]["ov_cimguiname"] = "igIndent" defs["igIndent"][1]["ret"] = "void" @@ -15245,7 +15263,7 @@ defs["igInitialize"][1]["call_args"] = "(context)" defs["igInitialize"][1]["cimguiname"] = "igInitialize" defs["igInitialize"][1]["defaults"] = {} defs["igInitialize"][1]["funcname"] = "Initialize" -defs["igInitialize"][1]["location"] = "internal" +defs["igInitialize"][1]["location"] = "imgui_internal:1802" defs["igInitialize"][1]["namespace"] = "ImGui" defs["igInitialize"][1]["ov_cimguiname"] = "igInitialize" defs["igInitialize"][1]["ret"] = "void" @@ -15283,7 +15301,7 @@ defs["igInputDouble"][1]["defaults"]["format"] = "\"%.6f\"" defs["igInputDouble"][1]["defaults"]["step"] = "0.0" defs["igInputDouble"][1]["defaults"]["step_fast"] = "0.0" defs["igInputDouble"][1]["funcname"] = "InputDouble" -defs["igInputDouble"][1]["location"] = "imgui" +defs["igInputDouble"][1]["location"] = "imgui:521" defs["igInputDouble"][1]["namespace"] = "ImGui" defs["igInputDouble"][1]["ov_cimguiname"] = "igInputDouble" defs["igInputDouble"][1]["ret"] = "bool" @@ -15321,7 +15339,7 @@ defs["igInputFloat"][1]["defaults"]["format"] = "\"%.3f\"" defs["igInputFloat"][1]["defaults"]["step"] = "0.0f" defs["igInputFloat"][1]["defaults"]["step_fast"] = "0.0f" defs["igInputFloat"][1]["funcname"] = "InputFloat" -defs["igInputFloat"][1]["location"] = "imgui" +defs["igInputFloat"][1]["location"] = "imgui:513" defs["igInputFloat"][1]["namespace"] = "ImGui" defs["igInputFloat"][1]["ov_cimguiname"] = "igInputFloat" defs["igInputFloat"][1]["ret"] = "bool" @@ -15351,7 +15369,7 @@ defs["igInputFloat2"][1]["defaults"] = {} defs["igInputFloat2"][1]["defaults"]["flags"] = "0" defs["igInputFloat2"][1]["defaults"]["format"] = "\"%.3f\"" defs["igInputFloat2"][1]["funcname"] = "InputFloat2" -defs["igInputFloat2"][1]["location"] = "imgui" +defs["igInputFloat2"][1]["location"] = "imgui:514" defs["igInputFloat2"][1]["namespace"] = "ImGui" defs["igInputFloat2"][1]["ov_cimguiname"] = "igInputFloat2" defs["igInputFloat2"][1]["ret"] = "bool" @@ -15381,7 +15399,7 @@ defs["igInputFloat3"][1]["defaults"] = {} defs["igInputFloat3"][1]["defaults"]["flags"] = "0" defs["igInputFloat3"][1]["defaults"]["format"] = "\"%.3f\"" defs["igInputFloat3"][1]["funcname"] = "InputFloat3" -defs["igInputFloat3"][1]["location"] = "imgui" +defs["igInputFloat3"][1]["location"] = "imgui:515" defs["igInputFloat3"][1]["namespace"] = "ImGui" defs["igInputFloat3"][1]["ov_cimguiname"] = "igInputFloat3" defs["igInputFloat3"][1]["ret"] = "bool" @@ -15411,7 +15429,7 @@ defs["igInputFloat4"][1]["defaults"] = {} defs["igInputFloat4"][1]["defaults"]["flags"] = "0" defs["igInputFloat4"][1]["defaults"]["format"] = "\"%.3f\"" defs["igInputFloat4"][1]["funcname"] = "InputFloat4" -defs["igInputFloat4"][1]["location"] = "imgui" +defs["igInputFloat4"][1]["location"] = "imgui:516" defs["igInputFloat4"][1]["namespace"] = "ImGui" defs["igInputFloat4"][1]["ov_cimguiname"] = "igInputFloat4" defs["igInputFloat4"][1]["ret"] = "bool" @@ -15445,7 +15463,7 @@ defs["igInputInt"][1]["defaults"]["flags"] = "0" defs["igInputInt"][1]["defaults"]["step"] = "1" defs["igInputInt"][1]["defaults"]["step_fast"] = "100" defs["igInputInt"][1]["funcname"] = "InputInt" -defs["igInputInt"][1]["location"] = "imgui" +defs["igInputInt"][1]["location"] = "imgui:517" defs["igInputInt"][1]["namespace"] = "ImGui" defs["igInputInt"][1]["ov_cimguiname"] = "igInputInt" defs["igInputInt"][1]["ret"] = "bool" @@ -15471,7 +15489,7 @@ defs["igInputInt2"][1]["cimguiname"] = "igInputInt2" defs["igInputInt2"][1]["defaults"] = {} defs["igInputInt2"][1]["defaults"]["flags"] = "0" defs["igInputInt2"][1]["funcname"] = "InputInt2" -defs["igInputInt2"][1]["location"] = "imgui" +defs["igInputInt2"][1]["location"] = "imgui:518" defs["igInputInt2"][1]["namespace"] = "ImGui" defs["igInputInt2"][1]["ov_cimguiname"] = "igInputInt2" defs["igInputInt2"][1]["ret"] = "bool" @@ -15497,7 +15515,7 @@ defs["igInputInt3"][1]["cimguiname"] = "igInputInt3" defs["igInputInt3"][1]["defaults"] = {} defs["igInputInt3"][1]["defaults"]["flags"] = "0" defs["igInputInt3"][1]["funcname"] = "InputInt3" -defs["igInputInt3"][1]["location"] = "imgui" +defs["igInputInt3"][1]["location"] = "imgui:519" defs["igInputInt3"][1]["namespace"] = "ImGui" defs["igInputInt3"][1]["ov_cimguiname"] = "igInputInt3" defs["igInputInt3"][1]["ret"] = "bool" @@ -15523,7 +15541,7 @@ defs["igInputInt4"][1]["cimguiname"] = "igInputInt4" defs["igInputInt4"][1]["defaults"] = {} defs["igInputInt4"][1]["defaults"]["flags"] = "0" defs["igInputInt4"][1]["funcname"] = "InputInt4" -defs["igInputInt4"][1]["location"] = "imgui" +defs["igInputInt4"][1]["location"] = "imgui:520" defs["igInputInt4"][1]["namespace"] = "ImGui" defs["igInputInt4"][1]["ov_cimguiname"] = "igInputInt4" defs["igInputInt4"][1]["ret"] = "bool" @@ -15560,11 +15578,11 @@ defs["igInputScalar"][1]["call_args"] = "(label,data_type,p_data,p_step,p_step_f defs["igInputScalar"][1]["cimguiname"] = "igInputScalar" defs["igInputScalar"][1]["defaults"] = {} defs["igInputScalar"][1]["defaults"]["flags"] = "0" -defs["igInputScalar"][1]["defaults"]["format"] = "((void*)0)" -defs["igInputScalar"][1]["defaults"]["p_step"] = "((void*)0)" -defs["igInputScalar"][1]["defaults"]["p_step_fast"] = "((void*)0)" +defs["igInputScalar"][1]["defaults"]["format"] = "NULL" +defs["igInputScalar"][1]["defaults"]["p_step"] = "NULL" +defs["igInputScalar"][1]["defaults"]["p_step_fast"] = "NULL" defs["igInputScalar"][1]["funcname"] = "InputScalar" -defs["igInputScalar"][1]["location"] = "imgui" +defs["igInputScalar"][1]["location"] = "imgui:522" defs["igInputScalar"][1]["namespace"] = "ImGui" defs["igInputScalar"][1]["ov_cimguiname"] = "igInputScalar" defs["igInputScalar"][1]["ret"] = "bool" @@ -15604,11 +15622,11 @@ defs["igInputScalarN"][1]["call_args"] = "(label,data_type,p_data,components,p_s defs["igInputScalarN"][1]["cimguiname"] = "igInputScalarN" defs["igInputScalarN"][1]["defaults"] = {} defs["igInputScalarN"][1]["defaults"]["flags"] = "0" -defs["igInputScalarN"][1]["defaults"]["format"] = "((void*)0)" -defs["igInputScalarN"][1]["defaults"]["p_step"] = "((void*)0)" -defs["igInputScalarN"][1]["defaults"]["p_step_fast"] = "((void*)0)" +defs["igInputScalarN"][1]["defaults"]["format"] = "NULL" +defs["igInputScalarN"][1]["defaults"]["p_step"] = "NULL" +defs["igInputScalarN"][1]["defaults"]["p_step_fast"] = "NULL" defs["igInputScalarN"][1]["funcname"] = "InputScalarN" -defs["igInputScalarN"][1]["location"] = "imgui" +defs["igInputScalarN"][1]["location"] = "imgui:523" defs["igInputScalarN"][1]["namespace"] = "ImGui" defs["igInputScalarN"][1]["ov_cimguiname"] = "igInputScalarN" defs["igInputScalarN"][1]["ret"] = "bool" @@ -15641,11 +15659,11 @@ defs["igInputText"][1]["argsoriginal"] = "(const char* label,char* buf,size_t bu defs["igInputText"][1]["call_args"] = "(label,buf,buf_size,flags,callback,user_data)" defs["igInputText"][1]["cimguiname"] = "igInputText" defs["igInputText"][1]["defaults"] = {} -defs["igInputText"][1]["defaults"]["callback"] = "((void*)0)" +defs["igInputText"][1]["defaults"]["callback"] = "NULL" defs["igInputText"][1]["defaults"]["flags"] = "0" -defs["igInputText"][1]["defaults"]["user_data"] = "((void*)0)" +defs["igInputText"][1]["defaults"]["user_data"] = "NULL" defs["igInputText"][1]["funcname"] = "InputText" -defs["igInputText"][1]["location"] = "imgui" +defs["igInputText"][1]["location"] = "imgui:510" defs["igInputText"][1]["namespace"] = "ImGui" defs["igInputText"][1]["ov_cimguiname"] = "igInputText" defs["igInputText"][1]["ret"] = "bool" @@ -15684,10 +15702,10 @@ defs["igInputTextEx"][1]["argsoriginal"] = "(const char* label,const char* hint, defs["igInputTextEx"][1]["call_args"] = "(label,hint,buf,buf_size,size_arg,flags,callback,user_data)" defs["igInputTextEx"][1]["cimguiname"] = "igInputTextEx" defs["igInputTextEx"][1]["defaults"] = {} -defs["igInputTextEx"][1]["defaults"]["callback"] = "((void*)0)" -defs["igInputTextEx"][1]["defaults"]["user_data"] = "((void*)0)" +defs["igInputTextEx"][1]["defaults"]["callback"] = "NULL" +defs["igInputTextEx"][1]["defaults"]["user_data"] = "NULL" defs["igInputTextEx"][1]["funcname"] = "InputTextEx" -defs["igInputTextEx"][1]["location"] = "internal" +defs["igInputTextEx"][1]["location"] = "imgui_internal:2005" defs["igInputTextEx"][1]["namespace"] = "ImGui" defs["igInputTextEx"][1]["ov_cimguiname"] = "igInputTextEx" defs["igInputTextEx"][1]["ret"] = "bool" @@ -15723,12 +15741,12 @@ defs["igInputTextMultiline"][1]["argsoriginal"] = "(const char* label,char* buf, defs["igInputTextMultiline"][1]["call_args"] = "(label,buf,buf_size,size,flags,callback,user_data)" defs["igInputTextMultiline"][1]["cimguiname"] = "igInputTextMultiline" defs["igInputTextMultiline"][1]["defaults"] = {} -defs["igInputTextMultiline"][1]["defaults"]["callback"] = "((void*)0)" +defs["igInputTextMultiline"][1]["defaults"]["callback"] = "NULL" defs["igInputTextMultiline"][1]["defaults"]["flags"] = "0" defs["igInputTextMultiline"][1]["defaults"]["size"] = "ImVec2(0,0)" -defs["igInputTextMultiline"][1]["defaults"]["user_data"] = "((void*)0)" +defs["igInputTextMultiline"][1]["defaults"]["user_data"] = "NULL" defs["igInputTextMultiline"][1]["funcname"] = "InputTextMultiline" -defs["igInputTextMultiline"][1]["location"] = "imgui" +defs["igInputTextMultiline"][1]["location"] = "imgui:511" defs["igInputTextMultiline"][1]["namespace"] = "ImGui" defs["igInputTextMultiline"][1]["ov_cimguiname"] = "igInputTextMultiline" defs["igInputTextMultiline"][1]["ret"] = "bool" @@ -15764,11 +15782,11 @@ defs["igInputTextWithHint"][1]["argsoriginal"] = "(const char* label,const char* defs["igInputTextWithHint"][1]["call_args"] = "(label,hint,buf,buf_size,flags,callback,user_data)" defs["igInputTextWithHint"][1]["cimguiname"] = "igInputTextWithHint" defs["igInputTextWithHint"][1]["defaults"] = {} -defs["igInputTextWithHint"][1]["defaults"]["callback"] = "((void*)0)" +defs["igInputTextWithHint"][1]["defaults"]["callback"] = "NULL" defs["igInputTextWithHint"][1]["defaults"]["flags"] = "0" -defs["igInputTextWithHint"][1]["defaults"]["user_data"] = "((void*)0)" +defs["igInputTextWithHint"][1]["defaults"]["user_data"] = "NULL" defs["igInputTextWithHint"][1]["funcname"] = "InputTextWithHint" -defs["igInputTextWithHint"][1]["location"] = "imgui" +defs["igInputTextWithHint"][1]["location"] = "imgui:512" defs["igInputTextWithHint"][1]["namespace"] = "ImGui" defs["igInputTextWithHint"][1]["ov_cimguiname"] = "igInputTextWithHint" defs["igInputTextWithHint"][1]["ret"] = "bool" @@ -15794,7 +15812,7 @@ defs["igInvisibleButton"][1]["cimguiname"] = "igInvisibleButton" defs["igInvisibleButton"][1]["defaults"] = {} defs["igInvisibleButton"][1]["defaults"]["flags"] = "0" defs["igInvisibleButton"][1]["funcname"] = "InvisibleButton" -defs["igInvisibleButton"][1]["location"] = "imgui" +defs["igInvisibleButton"][1]["location"] = "imgui:442" defs["igInvisibleButton"][1]["namespace"] = "ImGui" defs["igInvisibleButton"][1]["ov_cimguiname"] = "igInvisibleButton" defs["igInvisibleButton"][1]["ret"] = "bool" @@ -15813,7 +15831,7 @@ defs["igIsActiveIdUsingKey"][1]["call_args"] = "(key)" defs["igIsActiveIdUsingKey"][1]["cimguiname"] = "igIsActiveIdUsingKey" defs["igIsActiveIdUsingKey"][1]["defaults"] = {} defs["igIsActiveIdUsingKey"][1]["funcname"] = "IsActiveIdUsingKey" -defs["igIsActiveIdUsingKey"][1]["location"] = "internal" +defs["igIsActiveIdUsingKey"][1]["location"] = "imgui_internal:1900" defs["igIsActiveIdUsingKey"][1]["namespace"] = "ImGui" defs["igIsActiveIdUsingKey"][1]["ov_cimguiname"] = "igIsActiveIdUsingKey" defs["igIsActiveIdUsingKey"][1]["ret"] = "bool" @@ -15832,7 +15850,7 @@ defs["igIsActiveIdUsingNavDir"][1]["call_args"] = "(dir)" defs["igIsActiveIdUsingNavDir"][1]["cimguiname"] = "igIsActiveIdUsingNavDir" defs["igIsActiveIdUsingNavDir"][1]["defaults"] = {} defs["igIsActiveIdUsingNavDir"][1]["funcname"] = "IsActiveIdUsingNavDir" -defs["igIsActiveIdUsingNavDir"][1]["location"] = "internal" +defs["igIsActiveIdUsingNavDir"][1]["location"] = "imgui_internal:1898" defs["igIsActiveIdUsingNavDir"][1]["namespace"] = "ImGui" defs["igIsActiveIdUsingNavDir"][1]["ov_cimguiname"] = "igIsActiveIdUsingNavDir" defs["igIsActiveIdUsingNavDir"][1]["ret"] = "bool" @@ -15851,7 +15869,7 @@ defs["igIsActiveIdUsingNavInput"][1]["call_args"] = "(input)" defs["igIsActiveIdUsingNavInput"][1]["cimguiname"] = "igIsActiveIdUsingNavInput" defs["igIsActiveIdUsingNavInput"][1]["defaults"] = {} defs["igIsActiveIdUsingNavInput"][1]["funcname"] = "IsActiveIdUsingNavInput" -defs["igIsActiveIdUsingNavInput"][1]["location"] = "internal" +defs["igIsActiveIdUsingNavInput"][1]["location"] = "imgui_internal:1899" defs["igIsActiveIdUsingNavInput"][1]["namespace"] = "ImGui" defs["igIsActiveIdUsingNavInput"][1]["ov_cimguiname"] = "igIsActiveIdUsingNavInput" defs["igIsActiveIdUsingNavInput"][1]["ret"] = "bool" @@ -15867,7 +15885,7 @@ defs["igIsAnyItemActive"][1]["call_args"] = "()" defs["igIsAnyItemActive"][1]["cimguiname"] = "igIsAnyItemActive" defs["igIsAnyItemActive"][1]["defaults"] = {} defs["igIsAnyItemActive"][1]["funcname"] = "IsAnyItemActive" -defs["igIsAnyItemActive"][1]["location"] = "imgui" +defs["igIsAnyItemActive"][1]["location"] = "imgui:703" defs["igIsAnyItemActive"][1]["namespace"] = "ImGui" defs["igIsAnyItemActive"][1]["ov_cimguiname"] = "igIsAnyItemActive" defs["igIsAnyItemActive"][1]["ret"] = "bool" @@ -15883,7 +15901,7 @@ defs["igIsAnyItemFocused"][1]["call_args"] = "()" defs["igIsAnyItemFocused"][1]["cimguiname"] = "igIsAnyItemFocused" defs["igIsAnyItemFocused"][1]["defaults"] = {} defs["igIsAnyItemFocused"][1]["funcname"] = "IsAnyItemFocused" -defs["igIsAnyItemFocused"][1]["location"] = "imgui" +defs["igIsAnyItemFocused"][1]["location"] = "imgui:704" defs["igIsAnyItemFocused"][1]["namespace"] = "ImGui" defs["igIsAnyItemFocused"][1]["ov_cimguiname"] = "igIsAnyItemFocused" defs["igIsAnyItemFocused"][1]["ret"] = "bool" @@ -15899,7 +15917,7 @@ defs["igIsAnyItemHovered"][1]["call_args"] = "()" defs["igIsAnyItemHovered"][1]["cimguiname"] = "igIsAnyItemHovered" defs["igIsAnyItemHovered"][1]["defaults"] = {} defs["igIsAnyItemHovered"][1]["funcname"] = "IsAnyItemHovered" -defs["igIsAnyItemHovered"][1]["location"] = "imgui" +defs["igIsAnyItemHovered"][1]["location"] = "imgui:702" defs["igIsAnyItemHovered"][1]["namespace"] = "ImGui" defs["igIsAnyItemHovered"][1]["ov_cimguiname"] = "igIsAnyItemHovered" defs["igIsAnyItemHovered"][1]["ret"] = "bool" @@ -15915,7 +15933,7 @@ defs["igIsAnyMouseDown"][1]["call_args"] = "()" defs["igIsAnyMouseDown"][1]["cimguiname"] = "igIsAnyMouseDown" defs["igIsAnyMouseDown"][1]["defaults"] = {} defs["igIsAnyMouseDown"][1]["funcname"] = "IsAnyMouseDown" -defs["igIsAnyMouseDown"][1]["location"] = "imgui" +defs["igIsAnyMouseDown"][1]["location"] = "imgui:754" defs["igIsAnyMouseDown"][1]["namespace"] = "ImGui" defs["igIsAnyMouseDown"][1]["ov_cimguiname"] = "igIsAnyMouseDown" defs["igIsAnyMouseDown"][1]["ret"] = "bool" @@ -15940,7 +15958,7 @@ defs["igIsClippedEx"][1]["call_args"] = "(bb,id,clip_even_when_logged)" defs["igIsClippedEx"][1]["cimguiname"] = "igIsClippedEx" defs["igIsClippedEx"][1]["defaults"] = {} defs["igIsClippedEx"][1]["funcname"] = "IsClippedEx" -defs["igIsClippedEx"][1]["location"] = "internal" +defs["igIsClippedEx"][1]["location"] = "imgui_internal:1847" defs["igIsClippedEx"][1]["namespace"] = "ImGui" defs["igIsClippedEx"][1]["ov_cimguiname"] = "igIsClippedEx" defs["igIsClippedEx"][1]["ret"] = "bool" @@ -15956,7 +15974,7 @@ defs["igIsDragDropPayloadBeingAccepted"][1]["call_args"] = "()" defs["igIsDragDropPayloadBeingAccepted"][1]["cimguiname"] = "igIsDragDropPayloadBeingAccepted" defs["igIsDragDropPayloadBeingAccepted"][1]["defaults"] = {} defs["igIsDragDropPayloadBeingAccepted"][1]["funcname"] = "IsDragDropPayloadBeingAccepted" -defs["igIsDragDropPayloadBeingAccepted"][1]["location"] = "internal" +defs["igIsDragDropPayloadBeingAccepted"][1]["location"] = "imgui_internal:1910" defs["igIsDragDropPayloadBeingAccepted"][1]["namespace"] = "ImGui" defs["igIsDragDropPayloadBeingAccepted"][1]["ov_cimguiname"] = "igIsDragDropPayloadBeingAccepted" defs["igIsDragDropPayloadBeingAccepted"][1]["ret"] = "bool" @@ -15972,7 +15990,7 @@ defs["igIsItemActivated"][1]["call_args"] = "()" defs["igIsItemActivated"][1]["cimguiname"] = "igIsItemActivated" defs["igIsItemActivated"][1]["defaults"] = {} defs["igIsItemActivated"][1]["funcname"] = "IsItemActivated" -defs["igIsItemActivated"][1]["location"] = "imgui" +defs["igIsItemActivated"][1]["location"] = "imgui:698" defs["igIsItemActivated"][1]["namespace"] = "ImGui" defs["igIsItemActivated"][1]["ov_cimguiname"] = "igIsItemActivated" defs["igIsItemActivated"][1]["ret"] = "bool" @@ -15988,7 +16006,7 @@ defs["igIsItemActive"][1]["call_args"] = "()" defs["igIsItemActive"][1]["cimguiname"] = "igIsItemActive" defs["igIsItemActive"][1]["defaults"] = {} defs["igIsItemActive"][1]["funcname"] = "IsItemActive" -defs["igIsItemActive"][1]["location"] = "imgui" +defs["igIsItemActive"][1]["location"] = "imgui:693" defs["igIsItemActive"][1]["namespace"] = "ImGui" defs["igIsItemActive"][1]["ov_cimguiname"] = "igIsItemActive" defs["igIsItemActive"][1]["ret"] = "bool" @@ -16008,7 +16026,7 @@ defs["igIsItemClicked"][1]["cimguiname"] = "igIsItemClicked" defs["igIsItemClicked"][1]["defaults"] = {} defs["igIsItemClicked"][1]["defaults"]["mouse_button"] = "0" defs["igIsItemClicked"][1]["funcname"] = "IsItemClicked" -defs["igIsItemClicked"][1]["location"] = "imgui" +defs["igIsItemClicked"][1]["location"] = "imgui:695" defs["igIsItemClicked"][1]["namespace"] = "ImGui" defs["igIsItemClicked"][1]["ov_cimguiname"] = "igIsItemClicked" defs["igIsItemClicked"][1]["ret"] = "bool" @@ -16024,7 +16042,7 @@ defs["igIsItemDeactivated"][1]["call_args"] = "()" defs["igIsItemDeactivated"][1]["cimguiname"] = "igIsItemDeactivated" defs["igIsItemDeactivated"][1]["defaults"] = {} defs["igIsItemDeactivated"][1]["funcname"] = "IsItemDeactivated" -defs["igIsItemDeactivated"][1]["location"] = "imgui" +defs["igIsItemDeactivated"][1]["location"] = "imgui:699" defs["igIsItemDeactivated"][1]["namespace"] = "ImGui" defs["igIsItemDeactivated"][1]["ov_cimguiname"] = "igIsItemDeactivated" defs["igIsItemDeactivated"][1]["ret"] = "bool" @@ -16040,7 +16058,7 @@ defs["igIsItemDeactivatedAfterEdit"][1]["call_args"] = "()" defs["igIsItemDeactivatedAfterEdit"][1]["cimguiname"] = "igIsItemDeactivatedAfterEdit" defs["igIsItemDeactivatedAfterEdit"][1]["defaults"] = {} defs["igIsItemDeactivatedAfterEdit"][1]["funcname"] = "IsItemDeactivatedAfterEdit" -defs["igIsItemDeactivatedAfterEdit"][1]["location"] = "imgui" +defs["igIsItemDeactivatedAfterEdit"][1]["location"] = "imgui:700" defs["igIsItemDeactivatedAfterEdit"][1]["namespace"] = "ImGui" defs["igIsItemDeactivatedAfterEdit"][1]["ov_cimguiname"] = "igIsItemDeactivatedAfterEdit" defs["igIsItemDeactivatedAfterEdit"][1]["ret"] = "bool" @@ -16056,7 +16074,7 @@ defs["igIsItemEdited"][1]["call_args"] = "()" defs["igIsItemEdited"][1]["cimguiname"] = "igIsItemEdited" defs["igIsItemEdited"][1]["defaults"] = {} defs["igIsItemEdited"][1]["funcname"] = "IsItemEdited" -defs["igIsItemEdited"][1]["location"] = "imgui" +defs["igIsItemEdited"][1]["location"] = "imgui:697" defs["igIsItemEdited"][1]["namespace"] = "ImGui" defs["igIsItemEdited"][1]["ov_cimguiname"] = "igIsItemEdited" defs["igIsItemEdited"][1]["ret"] = "bool" @@ -16072,7 +16090,7 @@ defs["igIsItemFocused"][1]["call_args"] = "()" defs["igIsItemFocused"][1]["cimguiname"] = "igIsItemFocused" defs["igIsItemFocused"][1]["defaults"] = {} defs["igIsItemFocused"][1]["funcname"] = "IsItemFocused" -defs["igIsItemFocused"][1]["location"] = "imgui" +defs["igIsItemFocused"][1]["location"] = "imgui:694" defs["igIsItemFocused"][1]["namespace"] = "ImGui" defs["igIsItemFocused"][1]["ov_cimguiname"] = "igIsItemFocused" defs["igIsItemFocused"][1]["ret"] = "bool" @@ -16092,7 +16110,7 @@ defs["igIsItemHovered"][1]["cimguiname"] = "igIsItemHovered" defs["igIsItemHovered"][1]["defaults"] = {} defs["igIsItemHovered"][1]["defaults"]["flags"] = "0" defs["igIsItemHovered"][1]["funcname"] = "IsItemHovered" -defs["igIsItemHovered"][1]["location"] = "imgui" +defs["igIsItemHovered"][1]["location"] = "imgui:692" defs["igIsItemHovered"][1]["namespace"] = "ImGui" defs["igIsItemHovered"][1]["ov_cimguiname"] = "igIsItemHovered" defs["igIsItemHovered"][1]["ret"] = "bool" @@ -16108,7 +16126,7 @@ defs["igIsItemToggledOpen"][1]["call_args"] = "()" defs["igIsItemToggledOpen"][1]["cimguiname"] = "igIsItemToggledOpen" defs["igIsItemToggledOpen"][1]["defaults"] = {} defs["igIsItemToggledOpen"][1]["funcname"] = "IsItemToggledOpen" -defs["igIsItemToggledOpen"][1]["location"] = "imgui" +defs["igIsItemToggledOpen"][1]["location"] = "imgui:701" defs["igIsItemToggledOpen"][1]["namespace"] = "ImGui" defs["igIsItemToggledOpen"][1]["ov_cimguiname"] = "igIsItemToggledOpen" defs["igIsItemToggledOpen"][1]["ret"] = "bool" @@ -16124,7 +16142,7 @@ defs["igIsItemToggledSelection"][1]["call_args"] = "()" defs["igIsItemToggledSelection"][1]["cimguiname"] = "igIsItemToggledSelection" defs["igIsItemToggledSelection"][1]["defaults"] = {} defs["igIsItemToggledSelection"][1]["funcname"] = "IsItemToggledSelection" -defs["igIsItemToggledSelection"][1]["location"] = "internal" +defs["igIsItemToggledSelection"][1]["location"] = "imgui_internal:1856" defs["igIsItemToggledSelection"][1]["namespace"] = "ImGui" defs["igIsItemToggledSelection"][1]["ov_cimguiname"] = "igIsItemToggledSelection" defs["igIsItemToggledSelection"][1]["ret"] = "bool" @@ -16140,7 +16158,7 @@ defs["igIsItemVisible"][1]["call_args"] = "()" defs["igIsItemVisible"][1]["cimguiname"] = "igIsItemVisible" defs["igIsItemVisible"][1]["defaults"] = {} defs["igIsItemVisible"][1]["funcname"] = "IsItemVisible" -defs["igIsItemVisible"][1]["location"] = "imgui" +defs["igIsItemVisible"][1]["location"] = "imgui:696" defs["igIsItemVisible"][1]["namespace"] = "ImGui" defs["igIsItemVisible"][1]["ov_cimguiname"] = "igIsItemVisible" defs["igIsItemVisible"][1]["ret"] = "bool" @@ -16159,7 +16177,7 @@ defs["igIsKeyDown"][1]["call_args"] = "(user_key_index)" defs["igIsKeyDown"][1]["cimguiname"] = "igIsKeyDown" defs["igIsKeyDown"][1]["defaults"] = {} defs["igIsKeyDown"][1]["funcname"] = "IsKeyDown" -defs["igIsKeyDown"][1]["location"] = "imgui" +defs["igIsKeyDown"][1]["location"] = "imgui:738" defs["igIsKeyDown"][1]["namespace"] = "ImGui" defs["igIsKeyDown"][1]["ov_cimguiname"] = "igIsKeyDown" defs["igIsKeyDown"][1]["ret"] = "bool" @@ -16182,7 +16200,7 @@ defs["igIsKeyPressed"][1]["cimguiname"] = "igIsKeyPressed" defs["igIsKeyPressed"][1]["defaults"] = {} defs["igIsKeyPressed"][1]["defaults"]["repeat"] = "true" defs["igIsKeyPressed"][1]["funcname"] = "IsKeyPressed" -defs["igIsKeyPressed"][1]["location"] = "imgui" +defs["igIsKeyPressed"][1]["location"] = "imgui:739" defs["igIsKeyPressed"][1]["namespace"] = "ImGui" defs["igIsKeyPressed"][1]["ov_cimguiname"] = "igIsKeyPressed" defs["igIsKeyPressed"][1]["ret"] = "bool" @@ -16205,7 +16223,7 @@ defs["igIsKeyPressedMap"][1]["cimguiname"] = "igIsKeyPressedMap" defs["igIsKeyPressedMap"][1]["defaults"] = {} defs["igIsKeyPressedMap"][1]["defaults"]["repeat"] = "true" defs["igIsKeyPressedMap"][1]["funcname"] = "IsKeyPressedMap" -defs["igIsKeyPressedMap"][1]["location"] = "internal" +defs["igIsKeyPressedMap"][1]["location"] = "imgui_internal:1902" defs["igIsKeyPressedMap"][1]["namespace"] = "ImGui" defs["igIsKeyPressedMap"][1]["ov_cimguiname"] = "igIsKeyPressedMap" defs["igIsKeyPressedMap"][1]["ret"] = "bool" @@ -16224,7 +16242,7 @@ defs["igIsKeyReleased"][1]["call_args"] = "(user_key_index)" defs["igIsKeyReleased"][1]["cimguiname"] = "igIsKeyReleased" defs["igIsKeyReleased"][1]["defaults"] = {} defs["igIsKeyReleased"][1]["funcname"] = "IsKeyReleased" -defs["igIsKeyReleased"][1]["location"] = "imgui" +defs["igIsKeyReleased"][1]["location"] = "imgui:740" defs["igIsKeyReleased"][1]["namespace"] = "ImGui" defs["igIsKeyReleased"][1]["ov_cimguiname"] = "igIsKeyReleased" defs["igIsKeyReleased"][1]["ret"] = "bool" @@ -16247,7 +16265,7 @@ defs["igIsMouseClicked"][1]["cimguiname"] = "igIsMouseClicked" defs["igIsMouseClicked"][1]["defaults"] = {} defs["igIsMouseClicked"][1]["defaults"]["repeat"] = "false" defs["igIsMouseClicked"][1]["funcname"] = "IsMouseClicked" -defs["igIsMouseClicked"][1]["location"] = "imgui" +defs["igIsMouseClicked"][1]["location"] = "imgui:749" defs["igIsMouseClicked"][1]["namespace"] = "ImGui" defs["igIsMouseClicked"][1]["ov_cimguiname"] = "igIsMouseClicked" defs["igIsMouseClicked"][1]["ret"] = "bool" @@ -16266,7 +16284,7 @@ defs["igIsMouseDoubleClicked"][1]["call_args"] = "(button)" defs["igIsMouseDoubleClicked"][1]["cimguiname"] = "igIsMouseDoubleClicked" defs["igIsMouseDoubleClicked"][1]["defaults"] = {} defs["igIsMouseDoubleClicked"][1]["funcname"] = "IsMouseDoubleClicked" -defs["igIsMouseDoubleClicked"][1]["location"] = "imgui" +defs["igIsMouseDoubleClicked"][1]["location"] = "imgui:751" defs["igIsMouseDoubleClicked"][1]["namespace"] = "ImGui" defs["igIsMouseDoubleClicked"][1]["ov_cimguiname"] = "igIsMouseDoubleClicked" defs["igIsMouseDoubleClicked"][1]["ret"] = "bool" @@ -16285,7 +16303,7 @@ defs["igIsMouseDown"][1]["call_args"] = "(button)" defs["igIsMouseDown"][1]["cimguiname"] = "igIsMouseDown" defs["igIsMouseDown"][1]["defaults"] = {} defs["igIsMouseDown"][1]["funcname"] = "IsMouseDown" -defs["igIsMouseDown"][1]["location"] = "imgui" +defs["igIsMouseDown"][1]["location"] = "imgui:748" defs["igIsMouseDown"][1]["namespace"] = "ImGui" defs["igIsMouseDown"][1]["ov_cimguiname"] = "igIsMouseDown" defs["igIsMouseDown"][1]["ret"] = "bool" @@ -16308,7 +16326,7 @@ defs["igIsMouseDragPastThreshold"][1]["cimguiname"] = "igIsMouseDragPastThreshol defs["igIsMouseDragPastThreshold"][1]["defaults"] = {} defs["igIsMouseDragPastThreshold"][1]["defaults"]["lock_threshold"] = "-1.0f" defs["igIsMouseDragPastThreshold"][1]["funcname"] = "IsMouseDragPastThreshold" -defs["igIsMouseDragPastThreshold"][1]["location"] = "internal" +defs["igIsMouseDragPastThreshold"][1]["location"] = "imgui_internal:1901" defs["igIsMouseDragPastThreshold"][1]["namespace"] = "ImGui" defs["igIsMouseDragPastThreshold"][1]["ov_cimguiname"] = "igIsMouseDragPastThreshold" defs["igIsMouseDragPastThreshold"][1]["ret"] = "bool" @@ -16331,7 +16349,7 @@ defs["igIsMouseDragging"][1]["cimguiname"] = "igIsMouseDragging" defs["igIsMouseDragging"][1]["defaults"] = {} defs["igIsMouseDragging"][1]["defaults"]["lock_threshold"] = "-1.0f" defs["igIsMouseDragging"][1]["funcname"] = "IsMouseDragging" -defs["igIsMouseDragging"][1]["location"] = "imgui" +defs["igIsMouseDragging"][1]["location"] = "imgui:757" defs["igIsMouseDragging"][1]["namespace"] = "ImGui" defs["igIsMouseDragging"][1]["ov_cimguiname"] = "igIsMouseDragging" defs["igIsMouseDragging"][1]["ret"] = "bool" @@ -16357,7 +16375,7 @@ defs["igIsMouseHoveringRect"][1]["cimguiname"] = "igIsMouseHoveringRect" defs["igIsMouseHoveringRect"][1]["defaults"] = {} defs["igIsMouseHoveringRect"][1]["defaults"]["clip"] = "true" defs["igIsMouseHoveringRect"][1]["funcname"] = "IsMouseHoveringRect" -defs["igIsMouseHoveringRect"][1]["location"] = "imgui" +defs["igIsMouseHoveringRect"][1]["location"] = "imgui:752" defs["igIsMouseHoveringRect"][1]["namespace"] = "ImGui" defs["igIsMouseHoveringRect"][1]["ov_cimguiname"] = "igIsMouseHoveringRect" defs["igIsMouseHoveringRect"][1]["ret"] = "bool" @@ -16375,9 +16393,9 @@ defs["igIsMousePosValid"][1]["argsoriginal"] = "(const ImVec2* mouse_pos=((void* defs["igIsMousePosValid"][1]["call_args"] = "(mouse_pos)" defs["igIsMousePosValid"][1]["cimguiname"] = "igIsMousePosValid" defs["igIsMousePosValid"][1]["defaults"] = {} -defs["igIsMousePosValid"][1]["defaults"]["mouse_pos"] = "((void*)0)" +defs["igIsMousePosValid"][1]["defaults"]["mouse_pos"] = "NULL" defs["igIsMousePosValid"][1]["funcname"] = "IsMousePosValid" -defs["igIsMousePosValid"][1]["location"] = "imgui" +defs["igIsMousePosValid"][1]["location"] = "imgui:753" defs["igIsMousePosValid"][1]["namespace"] = "ImGui" defs["igIsMousePosValid"][1]["ov_cimguiname"] = "igIsMousePosValid" defs["igIsMousePosValid"][1]["ret"] = "bool" @@ -16396,7 +16414,7 @@ defs["igIsMouseReleased"][1]["call_args"] = "(button)" defs["igIsMouseReleased"][1]["cimguiname"] = "igIsMouseReleased" defs["igIsMouseReleased"][1]["defaults"] = {} defs["igIsMouseReleased"][1]["funcname"] = "IsMouseReleased" -defs["igIsMouseReleased"][1]["location"] = "imgui" +defs["igIsMouseReleased"][1]["location"] = "imgui:750" defs["igIsMouseReleased"][1]["namespace"] = "ImGui" defs["igIsMouseReleased"][1]["ov_cimguiname"] = "igIsMouseReleased" defs["igIsMouseReleased"][1]["ret"] = "bool" @@ -16415,7 +16433,7 @@ defs["igIsNavInputDown"][1]["call_args"] = "(n)" defs["igIsNavInputDown"][1]["cimguiname"] = "igIsNavInputDown" defs["igIsNavInputDown"][1]["defaults"] = {} defs["igIsNavInputDown"][1]["funcname"] = "IsNavInputDown" -defs["igIsNavInputDown"][1]["location"] = "internal" +defs["igIsNavInputDown"][1]["location"] = "imgui_internal:1903" defs["igIsNavInputDown"][1]["namespace"] = "ImGui" defs["igIsNavInputDown"][1]["ov_cimguiname"] = "igIsNavInputDown" defs["igIsNavInputDown"][1]["ret"] = "bool" @@ -16437,7 +16455,7 @@ defs["igIsNavInputTest"][1]["call_args"] = "(n,rm)" defs["igIsNavInputTest"][1]["cimguiname"] = "igIsNavInputTest" defs["igIsNavInputTest"][1]["defaults"] = {} defs["igIsNavInputTest"][1]["funcname"] = "IsNavInputTest" -defs["igIsNavInputTest"][1]["location"] = "internal" +defs["igIsNavInputTest"][1]["location"] = "imgui_internal:1904" defs["igIsNavInputTest"][1]["namespace"] = "ImGui" defs["igIsNavInputTest"][1]["ov_cimguiname"] = "igIsNavInputTest" defs["igIsNavInputTest"][1]["ret"] = "bool" @@ -16460,7 +16478,7 @@ defs["igIsPopupOpen"][1]["cimguiname"] = "igIsPopupOpen" defs["igIsPopupOpen"][1]["defaults"] = {} defs["igIsPopupOpen"][1]["defaults"]["flags"] = "0" defs["igIsPopupOpen"][1]["funcname"] = "IsPopupOpen" -defs["igIsPopupOpen"][1]["location"] = "imgui" +defs["igIsPopupOpen"][1]["location"] = "imgui:637" defs["igIsPopupOpen"][1]["namespace"] = "ImGui" defs["igIsPopupOpen"][1]["ov_cimguiname"] = "igIsPopupOpenStr" defs["igIsPopupOpen"][1]["ret"] = "bool" @@ -16480,7 +16498,7 @@ defs["igIsPopupOpen"][2]["call_args"] = "(id,popup_flags)" defs["igIsPopupOpen"][2]["cimguiname"] = "igIsPopupOpen" defs["igIsPopupOpen"][2]["defaults"] = {} defs["igIsPopupOpen"][2]["funcname"] = "IsPopupOpen" -defs["igIsPopupOpen"][2]["location"] = "internal" +defs["igIsPopupOpen"][2]["location"] = "imgui_internal:1869" defs["igIsPopupOpen"][2]["namespace"] = "ImGui" defs["igIsPopupOpen"][2]["ov_cimguiname"] = "igIsPopupOpenID" defs["igIsPopupOpen"][2]["ret"] = "bool" @@ -16500,7 +16518,7 @@ defs["igIsRectVisible"][1]["call_args"] = "(size)" defs["igIsRectVisible"][1]["cimguiname"] = "igIsRectVisible" defs["igIsRectVisible"][1]["defaults"] = {} defs["igIsRectVisible"][1]["funcname"] = "IsRectVisible" -defs["igIsRectVisible"][1]["location"] = "imgui" +defs["igIsRectVisible"][1]["location"] = "imgui:711" defs["igIsRectVisible"][1]["namespace"] = "ImGui" defs["igIsRectVisible"][1]["ov_cimguiname"] = "igIsRectVisibleNil" defs["igIsRectVisible"][1]["ret"] = "bool" @@ -16520,7 +16538,7 @@ defs["igIsRectVisible"][2]["call_args"] = "(rect_min,rect_max)" defs["igIsRectVisible"][2]["cimguiname"] = "igIsRectVisible" defs["igIsRectVisible"][2]["defaults"] = {} defs["igIsRectVisible"][2]["funcname"] = "IsRectVisible" -defs["igIsRectVisible"][2]["location"] = "imgui" +defs["igIsRectVisible"][2]["location"] = "imgui:712" defs["igIsRectVisible"][2]["namespace"] = "ImGui" defs["igIsRectVisible"][2]["ov_cimguiname"] = "igIsRectVisibleVec2" defs["igIsRectVisible"][2]["ret"] = "bool" @@ -16537,7 +16555,7 @@ defs["igIsWindowAppearing"][1]["call_args"] = "()" defs["igIsWindowAppearing"][1]["cimguiname"] = "igIsWindowAppearing" defs["igIsWindowAppearing"][1]["defaults"] = {} defs["igIsWindowAppearing"][1]["funcname"] = "IsWindowAppearing" -defs["igIsWindowAppearing"][1]["location"] = "imgui" +defs["igIsWindowAppearing"][1]["location"] = "imgui:298" defs["igIsWindowAppearing"][1]["namespace"] = "ImGui" defs["igIsWindowAppearing"][1]["ov_cimguiname"] = "igIsWindowAppearing" defs["igIsWindowAppearing"][1]["ret"] = "bool" @@ -16559,7 +16577,7 @@ defs["igIsWindowChildOf"][1]["call_args"] = "(window,potential_parent)" defs["igIsWindowChildOf"][1]["cimguiname"] = "igIsWindowChildOf" defs["igIsWindowChildOf"][1]["defaults"] = {} defs["igIsWindowChildOf"][1]["funcname"] = "IsWindowChildOf" -defs["igIsWindowChildOf"][1]["location"] = "internal" +defs["igIsWindowChildOf"][1]["location"] = "imgui_internal:1781" defs["igIsWindowChildOf"][1]["namespace"] = "ImGui" defs["igIsWindowChildOf"][1]["ov_cimguiname"] = "igIsWindowChildOf" defs["igIsWindowChildOf"][1]["ret"] = "bool" @@ -16575,7 +16593,7 @@ defs["igIsWindowCollapsed"][1]["call_args"] = "()" defs["igIsWindowCollapsed"][1]["cimguiname"] = "igIsWindowCollapsed" defs["igIsWindowCollapsed"][1]["defaults"] = {} defs["igIsWindowCollapsed"][1]["funcname"] = "IsWindowCollapsed" -defs["igIsWindowCollapsed"][1]["location"] = "imgui" +defs["igIsWindowCollapsed"][1]["location"] = "imgui:299" defs["igIsWindowCollapsed"][1]["namespace"] = "ImGui" defs["igIsWindowCollapsed"][1]["ov_cimguiname"] = "igIsWindowCollapsed" defs["igIsWindowCollapsed"][1]["ret"] = "bool" @@ -16595,7 +16613,7 @@ defs["igIsWindowFocused"][1]["cimguiname"] = "igIsWindowFocused" defs["igIsWindowFocused"][1]["defaults"] = {} defs["igIsWindowFocused"][1]["defaults"]["flags"] = "0" defs["igIsWindowFocused"][1]["funcname"] = "IsWindowFocused" -defs["igIsWindowFocused"][1]["location"] = "imgui" +defs["igIsWindowFocused"][1]["location"] = "imgui:300" defs["igIsWindowFocused"][1]["namespace"] = "ImGui" defs["igIsWindowFocused"][1]["ov_cimguiname"] = "igIsWindowFocused" defs["igIsWindowFocused"][1]["ret"] = "bool" @@ -16615,7 +16633,7 @@ defs["igIsWindowHovered"][1]["cimguiname"] = "igIsWindowHovered" defs["igIsWindowHovered"][1]["defaults"] = {} defs["igIsWindowHovered"][1]["defaults"]["flags"] = "0" defs["igIsWindowHovered"][1]["funcname"] = "IsWindowHovered" -defs["igIsWindowHovered"][1]["location"] = "imgui" +defs["igIsWindowHovered"][1]["location"] = "imgui:301" defs["igIsWindowHovered"][1]["namespace"] = "ImGui" defs["igIsWindowHovered"][1]["ov_cimguiname"] = "igIsWindowHovered" defs["igIsWindowHovered"][1]["ret"] = "bool" @@ -16634,7 +16652,7 @@ defs["igIsWindowNavFocusable"][1]["call_args"] = "(window)" defs["igIsWindowNavFocusable"][1]["cimguiname"] = "igIsWindowNavFocusable" defs["igIsWindowNavFocusable"][1]["defaults"] = {} defs["igIsWindowNavFocusable"][1]["funcname"] = "IsWindowNavFocusable" -defs["igIsWindowNavFocusable"][1]["location"] = "internal" +defs["igIsWindowNavFocusable"][1]["location"] = "imgui_internal:1782" defs["igIsWindowNavFocusable"][1]["namespace"] = "ImGui" defs["igIsWindowNavFocusable"][1]["ov_cimguiname"] = "igIsWindowNavFocusable" defs["igIsWindowNavFocusable"][1]["ret"] = "bool" @@ -16658,9 +16676,9 @@ defs["igItemAdd"][1]["argsoriginal"] = "(const ImRect& bb,ImGuiID id,const ImRec defs["igItemAdd"][1]["call_args"] = "(bb,id,nav_bb)" defs["igItemAdd"][1]["cimguiname"] = "igItemAdd" defs["igItemAdd"][1]["defaults"] = {} -defs["igItemAdd"][1]["defaults"]["nav_bb"] = "((void*)0)" +defs["igItemAdd"][1]["defaults"]["nav_bb"] = "NULL" defs["igItemAdd"][1]["funcname"] = "ItemAdd" -defs["igItemAdd"][1]["location"] = "internal" +defs["igItemAdd"][1]["location"] = "imgui_internal:1845" defs["igItemAdd"][1]["namespace"] = "ImGui" defs["igItemAdd"][1]["ov_cimguiname"] = "igItemAdd" defs["igItemAdd"][1]["ret"] = "bool" @@ -16682,7 +16700,7 @@ defs["igItemHoverable"][1]["call_args"] = "(bb,id)" defs["igItemHoverable"][1]["cimguiname"] = "igItemHoverable" defs["igItemHoverable"][1]["defaults"] = {} defs["igItemHoverable"][1]["funcname"] = "ItemHoverable" -defs["igItemHoverable"][1]["location"] = "internal" +defs["igItemHoverable"][1]["location"] = "imgui_internal:1846" defs["igItemHoverable"][1]["namespace"] = "ImGui" defs["igItemHoverable"][1]["ov_cimguiname"] = "igItemHoverable" defs["igItemHoverable"][1]["ret"] = "bool" @@ -16705,7 +16723,7 @@ defs["igItemSize"][1]["cimguiname"] = "igItemSize" defs["igItemSize"][1]["defaults"] = {} defs["igItemSize"][1]["defaults"]["text_baseline_y"] = "-1.0f" defs["igItemSize"][1]["funcname"] = "ItemSize" -defs["igItemSize"][1]["location"] = "internal" +defs["igItemSize"][1]["location"] = "imgui_internal:1843" defs["igItemSize"][1]["namespace"] = "ImGui" defs["igItemSize"][1]["ov_cimguiname"] = "igItemSizeVec2" defs["igItemSize"][1]["ret"] = "void" @@ -16726,7 +16744,7 @@ defs["igItemSize"][2]["cimguiname"] = "igItemSize" defs["igItemSize"][2]["defaults"] = {} defs["igItemSize"][2]["defaults"]["text_baseline_y"] = "-1.0f" defs["igItemSize"][2]["funcname"] = "ItemSize" -defs["igItemSize"][2]["location"] = "internal" +defs["igItemSize"][2]["location"] = "imgui_internal:1844" defs["igItemSize"][2]["namespace"] = "ImGui" defs["igItemSize"][2]["ov_cimguiname"] = "igItemSizeRect" defs["igItemSize"][2]["ret"] = "void" @@ -16746,7 +16764,7 @@ defs["igKeepAliveID"][1]["call_args"] = "(id)" defs["igKeepAliveID"][1]["cimguiname"] = "igKeepAliveID" defs["igKeepAliveID"][1]["defaults"] = {} defs["igKeepAliveID"][1]["funcname"] = "KeepAliveID" -defs["igKeepAliveID"][1]["location"] = "internal" +defs["igKeepAliveID"][1]["location"] = "imgui_internal:1838" defs["igKeepAliveID"][1]["namespace"] = "ImGui" defs["igKeepAliveID"][1]["ov_cimguiname"] = "igKeepAliveID" defs["igKeepAliveID"][1]["ret"] = "void" @@ -16772,7 +16790,7 @@ defs["igLabelText"][1]["cimguiname"] = "igLabelText" defs["igLabelText"][1]["defaults"] = {} defs["igLabelText"][1]["funcname"] = "LabelText" defs["igLabelText"][1]["isvararg"] = "...)" -defs["igLabelText"][1]["location"] = "imgui" +defs["igLabelText"][1]["location"] = "imgui:432" defs["igLabelText"][1]["namespace"] = "ImGui" defs["igLabelText"][1]["ov_cimguiname"] = "igLabelText" defs["igLabelText"][1]["ret"] = "void" @@ -16797,7 +16815,7 @@ defs["igLabelTextV"][1]["call_args"] = "(label,fmt,args)" defs["igLabelTextV"][1]["cimguiname"] = "igLabelTextV" defs["igLabelTextV"][1]["defaults"] = {} defs["igLabelTextV"][1]["funcname"] = "LabelTextV" -defs["igLabelTextV"][1]["location"] = "imgui" +defs["igLabelTextV"][1]["location"] = "imgui:433" defs["igLabelTextV"][1]["namespace"] = "ImGui" defs["igLabelTextV"][1]["ov_cimguiname"] = "igLabelTextV" defs["igLabelTextV"][1]["ret"] = "void" @@ -16829,7 +16847,7 @@ defs["igListBox"][1]["cimguiname"] = "igListBox" defs["igListBox"][1]["defaults"] = {} defs["igListBox"][1]["defaults"]["height_in_items"] = "-1" defs["igListBox"][1]["funcname"] = "ListBox" -defs["igListBox"][1]["location"] = "imgui" +defs["igListBox"][1]["location"] = "imgui:563" defs["igListBox"][1]["namespace"] = "ImGui" defs["igListBox"][1]["ov_cimguiname"] = "igListBoxStr_arr" defs["igListBox"][1]["ret"] = "bool" @@ -16864,7 +16882,7 @@ defs["igListBox"][2]["cimguiname"] = "igListBox" defs["igListBox"][2]["defaults"] = {} defs["igListBox"][2]["defaults"]["height_in_items"] = "-1" defs["igListBox"][2]["funcname"] = "ListBox" -defs["igListBox"][2]["location"] = "imgui" +defs["igListBox"][2]["location"] = "imgui:564" defs["igListBox"][2]["namespace"] = "ImGui" defs["igListBox"][2]["ov_cimguiname"] = "igListBoxFnBoolPtr" defs["igListBox"][2]["ret"] = "bool" @@ -16881,7 +16899,7 @@ defs["igListBoxFooter"][1]["call_args"] = "()" defs["igListBoxFooter"][1]["cimguiname"] = "igListBoxFooter" defs["igListBoxFooter"][1]["defaults"] = {} defs["igListBoxFooter"][1]["funcname"] = "ListBoxFooter" -defs["igListBoxFooter"][1]["location"] = "imgui" +defs["igListBoxFooter"][1]["location"] = "imgui:567" defs["igListBoxFooter"][1]["namespace"] = "ImGui" defs["igListBoxFooter"][1]["ov_cimguiname"] = "igListBoxFooter" defs["igListBoxFooter"][1]["ret"] = "void" @@ -16904,7 +16922,7 @@ defs["igListBoxHeader"][1]["cimguiname"] = "igListBoxHeader" defs["igListBoxHeader"][1]["defaults"] = {} defs["igListBoxHeader"][1]["defaults"]["size"] = "ImVec2(0,0)" defs["igListBoxHeader"][1]["funcname"] = "ListBoxHeader" -defs["igListBoxHeader"][1]["location"] = "imgui" +defs["igListBoxHeader"][1]["location"] = "imgui:565" defs["igListBoxHeader"][1]["namespace"] = "ImGui" defs["igListBoxHeader"][1]["ov_cimguiname"] = "igListBoxHeaderVec2" defs["igListBoxHeader"][1]["ret"] = "bool" @@ -16928,7 +16946,7 @@ defs["igListBoxHeader"][2]["cimguiname"] = "igListBoxHeader" defs["igListBoxHeader"][2]["defaults"] = {} defs["igListBoxHeader"][2]["defaults"]["height_in_items"] = "-1" defs["igListBoxHeader"][2]["funcname"] = "ListBoxHeader" -defs["igListBoxHeader"][2]["location"] = "imgui" +defs["igListBoxHeader"][2]["location"] = "imgui:566" defs["igListBoxHeader"][2]["namespace"] = "ImGui" defs["igListBoxHeader"][2]["ov_cimguiname"] = "igListBoxHeaderInt" defs["igListBoxHeader"][2]["ret"] = "bool" @@ -16948,7 +16966,7 @@ defs["igLoadIniSettingsFromDisk"][1]["call_args"] = "(ini_filename)" defs["igLoadIniSettingsFromDisk"][1]["cimguiname"] = "igLoadIniSettingsFromDisk" defs["igLoadIniSettingsFromDisk"][1]["defaults"] = {} defs["igLoadIniSettingsFromDisk"][1]["funcname"] = "LoadIniSettingsFromDisk" -defs["igLoadIniSettingsFromDisk"][1]["location"] = "imgui" +defs["igLoadIniSettingsFromDisk"][1]["location"] = "imgui:772" defs["igLoadIniSettingsFromDisk"][1]["namespace"] = "ImGui" defs["igLoadIniSettingsFromDisk"][1]["ov_cimguiname"] = "igLoadIniSettingsFromDisk" defs["igLoadIniSettingsFromDisk"][1]["ret"] = "void" @@ -16971,7 +16989,7 @@ defs["igLoadIniSettingsFromMemory"][1]["cimguiname"] = "igLoadIniSettingsFromMem defs["igLoadIniSettingsFromMemory"][1]["defaults"] = {} defs["igLoadIniSettingsFromMemory"][1]["defaults"]["ini_size"] = "0" defs["igLoadIniSettingsFromMemory"][1]["funcname"] = "LoadIniSettingsFromMemory" -defs["igLoadIniSettingsFromMemory"][1]["location"] = "imgui" +defs["igLoadIniSettingsFromMemory"][1]["location"] = "imgui:773" defs["igLoadIniSettingsFromMemory"][1]["namespace"] = "ImGui" defs["igLoadIniSettingsFromMemory"][1]["ov_cimguiname"] = "igLoadIniSettingsFromMemory" defs["igLoadIniSettingsFromMemory"][1]["ret"] = "void" @@ -16993,7 +17011,7 @@ defs["igLogBegin"][1]["call_args"] = "(type,auto_open_depth)" defs["igLogBegin"][1]["cimguiname"] = "igLogBegin" defs["igLogBegin"][1]["defaults"] = {} defs["igLogBegin"][1]["funcname"] = "LogBegin" -defs["igLogBegin"][1]["location"] = "internal" +defs["igLogBegin"][1]["location"] = "imgui_internal:1861" defs["igLogBegin"][1]["namespace"] = "ImGui" defs["igLogBegin"][1]["ov_cimguiname"] = "igLogBegin" defs["igLogBegin"][1]["ret"] = "void" @@ -17009,7 +17027,7 @@ defs["igLogButtons"][1]["call_args"] = "()" defs["igLogButtons"][1]["cimguiname"] = "igLogButtons" defs["igLogButtons"][1]["defaults"] = {} defs["igLogButtons"][1]["funcname"] = "LogButtons" -defs["igLogButtons"][1]["location"] = "imgui" +defs["igLogButtons"][1]["location"] = "imgui:666" defs["igLogButtons"][1]["namespace"] = "ImGui" defs["igLogButtons"][1]["ov_cimguiname"] = "igLogButtons" defs["igLogButtons"][1]["ret"] = "void" @@ -17025,7 +17043,7 @@ defs["igLogFinish"][1]["call_args"] = "()" defs["igLogFinish"][1]["cimguiname"] = "igLogFinish" defs["igLogFinish"][1]["defaults"] = {} defs["igLogFinish"][1]["funcname"] = "LogFinish" -defs["igLogFinish"][1]["location"] = "imgui" +defs["igLogFinish"][1]["location"] = "imgui:665" defs["igLogFinish"][1]["namespace"] = "ImGui" defs["igLogFinish"][1]["ov_cimguiname"] = "igLogFinish" defs["igLogFinish"][1]["ret"] = "void" @@ -17049,9 +17067,9 @@ defs["igLogRenderedText"][1]["argsoriginal"] = "(const ImVec2* ref_pos,const cha defs["igLogRenderedText"][1]["call_args"] = "(ref_pos,text,text_end)" defs["igLogRenderedText"][1]["cimguiname"] = "igLogRenderedText" defs["igLogRenderedText"][1]["defaults"] = {} -defs["igLogRenderedText"][1]["defaults"]["text_end"] = "((void*)0)" +defs["igLogRenderedText"][1]["defaults"]["text_end"] = "NULL" defs["igLogRenderedText"][1]["funcname"] = "LogRenderedText" -defs["igLogRenderedText"][1]["location"] = "internal" +defs["igLogRenderedText"][1]["location"] = "imgui_internal:1948" defs["igLogRenderedText"][1]["namespace"] = "ImGui" defs["igLogRenderedText"][1]["ov_cimguiname"] = "igLogRenderedText" defs["igLogRenderedText"][1]["ret"] = "void" @@ -17074,7 +17092,7 @@ defs["igLogText"][1]["cimguiname"] = "igLogText" defs["igLogText"][1]["defaults"] = {} defs["igLogText"][1]["funcname"] = "LogText" defs["igLogText"][1]["isvararg"] = "...)" -defs["igLogText"][1]["location"] = "imgui" +defs["igLogText"][1]["location"] = "imgui:667" defs["igLogText"][1]["manual"] = true defs["igLogText"][1]["namespace"] = "ImGui" defs["igLogText"][1]["ov_cimguiname"] = "igLogText" @@ -17095,7 +17113,7 @@ defs["igLogToBuffer"][1]["cimguiname"] = "igLogToBuffer" defs["igLogToBuffer"][1]["defaults"] = {} defs["igLogToBuffer"][1]["defaults"]["auto_open_depth"] = "-1" defs["igLogToBuffer"][1]["funcname"] = "LogToBuffer" -defs["igLogToBuffer"][1]["location"] = "internal" +defs["igLogToBuffer"][1]["location"] = "imgui_internal:1862" defs["igLogToBuffer"][1]["namespace"] = "ImGui" defs["igLogToBuffer"][1]["ov_cimguiname"] = "igLogToBuffer" defs["igLogToBuffer"][1]["ret"] = "void" @@ -17115,7 +17133,7 @@ defs["igLogToClipboard"][1]["cimguiname"] = "igLogToClipboard" defs["igLogToClipboard"][1]["defaults"] = {} defs["igLogToClipboard"][1]["defaults"]["auto_open_depth"] = "-1" defs["igLogToClipboard"][1]["funcname"] = "LogToClipboard" -defs["igLogToClipboard"][1]["location"] = "imgui" +defs["igLogToClipboard"][1]["location"] = "imgui:664" defs["igLogToClipboard"][1]["namespace"] = "ImGui" defs["igLogToClipboard"][1]["ov_cimguiname"] = "igLogToClipboard" defs["igLogToClipboard"][1]["ret"] = "void" @@ -17137,9 +17155,9 @@ defs["igLogToFile"][1]["call_args"] = "(auto_open_depth,filename)" defs["igLogToFile"][1]["cimguiname"] = "igLogToFile" defs["igLogToFile"][1]["defaults"] = {} defs["igLogToFile"][1]["defaults"]["auto_open_depth"] = "-1" -defs["igLogToFile"][1]["defaults"]["filename"] = "((void*)0)" +defs["igLogToFile"][1]["defaults"]["filename"] = "NULL" defs["igLogToFile"][1]["funcname"] = "LogToFile" -defs["igLogToFile"][1]["location"] = "imgui" +defs["igLogToFile"][1]["location"] = "imgui:663" defs["igLogToFile"][1]["namespace"] = "ImGui" defs["igLogToFile"][1]["ov_cimguiname"] = "igLogToFile" defs["igLogToFile"][1]["ret"] = "void" @@ -17159,7 +17177,7 @@ defs["igLogToTTY"][1]["cimguiname"] = "igLogToTTY" defs["igLogToTTY"][1]["defaults"] = {} defs["igLogToTTY"][1]["defaults"]["auto_open_depth"] = "-1" defs["igLogToTTY"][1]["funcname"] = "LogToTTY" -defs["igLogToTTY"][1]["location"] = "imgui" +defs["igLogToTTY"][1]["location"] = "imgui:662" defs["igLogToTTY"][1]["namespace"] = "ImGui" defs["igLogToTTY"][1]["ov_cimguiname"] = "igLogToTTY" defs["igLogToTTY"][1]["ret"] = "void" @@ -17175,7 +17193,7 @@ defs["igMarkIniSettingsDirty"][1]["call_args"] = "()" defs["igMarkIniSettingsDirty"][1]["cimguiname"] = "igMarkIniSettingsDirty" defs["igMarkIniSettingsDirty"][1]["defaults"] = {} defs["igMarkIniSettingsDirty"][1]["funcname"] = "MarkIniSettingsDirty" -defs["igMarkIniSettingsDirty"][1]["location"] = "internal" +defs["igMarkIniSettingsDirty"][1]["location"] = "imgui_internal:1812" defs["igMarkIniSettingsDirty"][1]["namespace"] = "ImGui" defs["igMarkIniSettingsDirty"][1]["ov_cimguiname"] = "igMarkIniSettingsDirtyNil" defs["igMarkIniSettingsDirty"][1]["ret"] = "void" @@ -17192,7 +17210,7 @@ defs["igMarkIniSettingsDirty"][2]["call_args"] = "(window)" defs["igMarkIniSettingsDirty"][2]["cimguiname"] = "igMarkIniSettingsDirty" defs["igMarkIniSettingsDirty"][2]["defaults"] = {} defs["igMarkIniSettingsDirty"][2]["funcname"] = "MarkIniSettingsDirty" -defs["igMarkIniSettingsDirty"][2]["location"] = "internal" +defs["igMarkIniSettingsDirty"][2]["location"] = "imgui_internal:1813" defs["igMarkIniSettingsDirty"][2]["namespace"] = "ImGui" defs["igMarkIniSettingsDirty"][2]["ov_cimguiname"] = "igMarkIniSettingsDirtyWindowPtr" defs["igMarkIniSettingsDirty"][2]["ret"] = "void" @@ -17212,7 +17230,7 @@ defs["igMarkItemEdited"][1]["call_args"] = "(id)" defs["igMarkItemEdited"][1]["cimguiname"] = "igMarkItemEdited" defs["igMarkItemEdited"][1]["defaults"] = {} defs["igMarkItemEdited"][1]["funcname"] = "MarkItemEdited" -defs["igMarkItemEdited"][1]["location"] = "internal" +defs["igMarkItemEdited"][1]["location"] = "imgui_internal:1839" defs["igMarkItemEdited"][1]["namespace"] = "ImGui" defs["igMarkItemEdited"][1]["ov_cimguiname"] = "igMarkItemEdited" defs["igMarkItemEdited"][1]["ret"] = "void" @@ -17231,7 +17249,7 @@ defs["igMemAlloc"][1]["call_args"] = "(size)" defs["igMemAlloc"][1]["cimguiname"] = "igMemAlloc" defs["igMemAlloc"][1]["defaults"] = {} defs["igMemAlloc"][1]["funcname"] = "MemAlloc" -defs["igMemAlloc"][1]["location"] = "imgui" +defs["igMemAlloc"][1]["location"] = "imgui:784" defs["igMemAlloc"][1]["namespace"] = "ImGui" defs["igMemAlloc"][1]["ov_cimguiname"] = "igMemAlloc" defs["igMemAlloc"][1]["ret"] = "void*" @@ -17250,7 +17268,7 @@ defs["igMemFree"][1]["call_args"] = "(ptr)" defs["igMemFree"][1]["cimguiname"] = "igMemFree" defs["igMemFree"][1]["defaults"] = {} defs["igMemFree"][1]["funcname"] = "MemFree" -defs["igMemFree"][1]["location"] = "imgui" +defs["igMemFree"][1]["location"] = "imgui:785" defs["igMemFree"][1]["namespace"] = "ImGui" defs["igMemFree"][1]["ov_cimguiname"] = "igMemFree" defs["igMemFree"][1]["ret"] = "void" @@ -17279,9 +17297,9 @@ defs["igMenuItem"][1]["cimguiname"] = "igMenuItem" defs["igMenuItem"][1]["defaults"] = {} defs["igMenuItem"][1]["defaults"]["enabled"] = "true" defs["igMenuItem"][1]["defaults"]["selected"] = "false" -defs["igMenuItem"][1]["defaults"]["shortcut"] = "((void*)0)" +defs["igMenuItem"][1]["defaults"]["shortcut"] = "NULL" defs["igMenuItem"][1]["funcname"] = "MenuItem" -defs["igMenuItem"][1]["location"] = "imgui" +defs["igMenuItem"][1]["location"] = "imgui:592" defs["igMenuItem"][1]["namespace"] = "ImGui" defs["igMenuItem"][1]["ov_cimguiname"] = "igMenuItemBool" defs["igMenuItem"][1]["ret"] = "bool" @@ -17308,7 +17326,7 @@ defs["igMenuItem"][2]["cimguiname"] = "igMenuItem" defs["igMenuItem"][2]["defaults"] = {} defs["igMenuItem"][2]["defaults"]["enabled"] = "true" defs["igMenuItem"][2]["funcname"] = "MenuItem" -defs["igMenuItem"][2]["location"] = "imgui" +defs["igMenuItem"][2]["location"] = "imgui:593" defs["igMenuItem"][2]["namespace"] = "ImGui" defs["igMenuItem"][2]["ov_cimguiname"] = "igMenuItemBoolPtr" defs["igMenuItem"][2]["ret"] = "bool" @@ -17331,7 +17349,7 @@ defs["igNavInitWindow"][1]["call_args"] = "(window,force_reinit)" defs["igNavInitWindow"][1]["cimguiname"] = "igNavInitWindow" defs["igNavInitWindow"][1]["defaults"] = {} defs["igNavInitWindow"][1]["funcname"] = "NavInitWindow" -defs["igNavInitWindow"][1]["location"] = "internal" +defs["igNavInitWindow"][1]["location"] = "imgui_internal:1877" defs["igNavInitWindow"][1]["namespace"] = "ImGui" defs["igNavInitWindow"][1]["ov_cimguiname"] = "igNavInitWindow" defs["igNavInitWindow"][1]["ret"] = "void" @@ -17347,7 +17365,7 @@ defs["igNavMoveRequestButNoResultYet"][1]["call_args"] = "()" defs["igNavMoveRequestButNoResultYet"][1]["cimguiname"] = "igNavMoveRequestButNoResultYet" defs["igNavMoveRequestButNoResultYet"][1]["defaults"] = {} defs["igNavMoveRequestButNoResultYet"][1]["funcname"] = "NavMoveRequestButNoResultYet" -defs["igNavMoveRequestButNoResultYet"][1]["location"] = "internal" +defs["igNavMoveRequestButNoResultYet"][1]["location"] = "imgui_internal:1878" defs["igNavMoveRequestButNoResultYet"][1]["namespace"] = "ImGui" defs["igNavMoveRequestButNoResultYet"][1]["ov_cimguiname"] = "igNavMoveRequestButNoResultYet" defs["igNavMoveRequestButNoResultYet"][1]["ret"] = "bool" @@ -17363,7 +17381,7 @@ defs["igNavMoveRequestCancel"][1]["call_args"] = "()" defs["igNavMoveRequestCancel"][1]["cimguiname"] = "igNavMoveRequestCancel" defs["igNavMoveRequestCancel"][1]["defaults"] = {} defs["igNavMoveRequestCancel"][1]["funcname"] = "NavMoveRequestCancel" -defs["igNavMoveRequestCancel"][1]["location"] = "internal" +defs["igNavMoveRequestCancel"][1]["location"] = "imgui_internal:1879" defs["igNavMoveRequestCancel"][1]["namespace"] = "ImGui" defs["igNavMoveRequestCancel"][1]["ov_cimguiname"] = "igNavMoveRequestCancel" defs["igNavMoveRequestCancel"][1]["ret"] = "void" @@ -17391,7 +17409,7 @@ defs["igNavMoveRequestForward"][1]["call_args"] = "(move_dir,clip_dir,bb_rel,mov defs["igNavMoveRequestForward"][1]["cimguiname"] = "igNavMoveRequestForward" defs["igNavMoveRequestForward"][1]["defaults"] = {} defs["igNavMoveRequestForward"][1]["funcname"] = "NavMoveRequestForward" -defs["igNavMoveRequestForward"][1]["location"] = "internal" +defs["igNavMoveRequestForward"][1]["location"] = "imgui_internal:1880" defs["igNavMoveRequestForward"][1]["namespace"] = "ImGui" defs["igNavMoveRequestForward"][1]["ov_cimguiname"] = "igNavMoveRequestForward" defs["igNavMoveRequestForward"][1]["ret"] = "void" @@ -17413,7 +17431,7 @@ defs["igNavMoveRequestTryWrapping"][1]["call_args"] = "(window,move_flags)" defs["igNavMoveRequestTryWrapping"][1]["cimguiname"] = "igNavMoveRequestTryWrapping" defs["igNavMoveRequestTryWrapping"][1]["defaults"] = {} defs["igNavMoveRequestTryWrapping"][1]["funcname"] = "NavMoveRequestTryWrapping" -defs["igNavMoveRequestTryWrapping"][1]["location"] = "internal" +defs["igNavMoveRequestTryWrapping"][1]["location"] = "imgui_internal:1881" defs["igNavMoveRequestTryWrapping"][1]["namespace"] = "ImGui" defs["igNavMoveRequestTryWrapping"][1]["ov_cimguiname"] = "igNavMoveRequestTryWrapping" defs["igNavMoveRequestTryWrapping"][1]["ret"] = "void" @@ -17429,7 +17447,7 @@ defs["igNewFrame"][1]["call_args"] = "()" defs["igNewFrame"][1]["cimguiname"] = "igNewFrame" defs["igNewFrame"][1]["defaults"] = {} defs["igNewFrame"][1]["funcname"] = "NewFrame" -defs["igNewFrame"][1]["location"] = "imgui" +defs["igNewFrame"][1]["location"] = "imgui:252" defs["igNewFrame"][1]["namespace"] = "ImGui" defs["igNewFrame"][1]["ov_cimguiname"] = "igNewFrame" defs["igNewFrame"][1]["ret"] = "void" @@ -17445,7 +17463,7 @@ defs["igNewLine"][1]["call_args"] = "()" defs["igNewLine"][1]["cimguiname"] = "igNewLine" defs["igNewLine"][1]["defaults"] = {} defs["igNewLine"][1]["funcname"] = "NewLine" -defs["igNewLine"][1]["location"] = "imgui" +defs["igNewLine"][1]["location"] = "imgui:384" defs["igNewLine"][1]["namespace"] = "ImGui" defs["igNewLine"][1]["ov_cimguiname"] = "igNewLine" defs["igNewLine"][1]["ret"] = "void" @@ -17461,7 +17479,7 @@ defs["igNextColumn"][1]["call_args"] = "()" defs["igNextColumn"][1]["cimguiname"] = "igNextColumn" defs["igNextColumn"][1]["defaults"] = {} defs["igNextColumn"][1]["funcname"] = "NextColumn" -defs["igNextColumn"][1]["location"] = "imgui" +defs["igNextColumn"][1]["location"] = "imgui:645" defs["igNextColumn"][1]["namespace"] = "ImGui" defs["igNextColumn"][1]["ov_cimguiname"] = "igNextColumn" defs["igNextColumn"][1]["ret"] = "void" @@ -17484,7 +17502,7 @@ defs["igOpenPopup"][1]["cimguiname"] = "igOpenPopup" defs["igOpenPopup"][1]["defaults"] = {} defs["igOpenPopup"][1]["defaults"]["popup_flags"] = "0" defs["igOpenPopup"][1]["funcname"] = "OpenPopup" -defs["igOpenPopup"][1]["location"] = "imgui" +defs["igOpenPopup"][1]["location"] = "imgui:622" defs["igOpenPopup"][1]["namespace"] = "ImGui" defs["igOpenPopup"][1]["ov_cimguiname"] = "igOpenPopup" defs["igOpenPopup"][1]["ret"] = "void" @@ -17506,9 +17524,9 @@ defs["igOpenPopupContextItem"][1]["call_args"] = "(str_id,popup_flags)" defs["igOpenPopupContextItem"][1]["cimguiname"] = "igOpenPopupContextItem" defs["igOpenPopupContextItem"][1]["defaults"] = {} defs["igOpenPopupContextItem"][1]["defaults"]["popup_flags"] = "1" -defs["igOpenPopupContextItem"][1]["defaults"]["str_id"] = "((void*)0)" +defs["igOpenPopupContextItem"][1]["defaults"]["str_id"] = "NULL" defs["igOpenPopupContextItem"][1]["funcname"] = "OpenPopupContextItem" -defs["igOpenPopupContextItem"][1]["location"] = "imgui" +defs["igOpenPopupContextItem"][1]["location"] = "imgui:623" defs["igOpenPopupContextItem"][1]["namespace"] = "ImGui" defs["igOpenPopupContextItem"][1]["ov_cimguiname"] = "igOpenPopupContextItem" defs["igOpenPopupContextItem"][1]["ret"] = "bool" @@ -17531,7 +17549,7 @@ defs["igOpenPopupEx"][1]["cimguiname"] = "igOpenPopupEx" defs["igOpenPopupEx"][1]["defaults"] = {} defs["igOpenPopupEx"][1]["defaults"]["popup_flags"] = "ImGuiPopupFlags_None" defs["igOpenPopupEx"][1]["funcname"] = "OpenPopupEx" -defs["igOpenPopupEx"][1]["location"] = "internal" +defs["igOpenPopupEx"][1]["location"] = "imgui_internal:1866" defs["igOpenPopupEx"][1]["namespace"] = "ImGui" defs["igOpenPopupEx"][1]["ov_cimguiname"] = "igOpenPopupEx" defs["igOpenPopupEx"][1]["ret"] = "void" @@ -17579,7 +17597,7 @@ defs["igPlotEx"][1]["call_args"] = "(plot_type,label,values_getter,data,values_c defs["igPlotEx"][1]["cimguiname"] = "igPlotEx" defs["igPlotEx"][1]["defaults"] = {} defs["igPlotEx"][1]["funcname"] = "PlotEx" -defs["igPlotEx"][1]["location"] = "internal" +defs["igPlotEx"][1]["location"] = "imgui_internal:2017" defs["igPlotEx"][1]["namespace"] = "ImGui" defs["igPlotEx"][1]["ov_cimguiname"] = "igPlotEx" defs["igPlotEx"][1]["ret"] = "int" @@ -17622,13 +17640,13 @@ defs["igPlotHistogram"][1]["call_args"] = "(label,values,values_count,values_off defs["igPlotHistogram"][1]["cimguiname"] = "igPlotHistogram" defs["igPlotHistogram"][1]["defaults"] = {} defs["igPlotHistogram"][1]["defaults"]["graph_size"] = "ImVec2(0,0)" -defs["igPlotHistogram"][1]["defaults"]["overlay_text"] = "((void*)0)" +defs["igPlotHistogram"][1]["defaults"]["overlay_text"] = "NULL" defs["igPlotHistogram"][1]["defaults"]["scale_max"] = "FLT_MAX" defs["igPlotHistogram"][1]["defaults"]["scale_min"] = "FLT_MAX" defs["igPlotHistogram"][1]["defaults"]["stride"] = "sizeof(float)" defs["igPlotHistogram"][1]["defaults"]["values_offset"] = "0" defs["igPlotHistogram"][1]["funcname"] = "PlotHistogram" -defs["igPlotHistogram"][1]["location"] = "imgui" +defs["igPlotHistogram"][1]["location"] = "imgui:572" defs["igPlotHistogram"][1]["namespace"] = "ImGui" defs["igPlotHistogram"][1]["ov_cimguiname"] = "igPlotHistogramFloatPtr" defs["igPlotHistogram"][1]["ret"] = "void" @@ -17671,12 +17689,12 @@ defs["igPlotHistogram"][2]["call_args"] = "(label,values_getter,data,values_coun defs["igPlotHistogram"][2]["cimguiname"] = "igPlotHistogram" defs["igPlotHistogram"][2]["defaults"] = {} defs["igPlotHistogram"][2]["defaults"]["graph_size"] = "ImVec2(0,0)" -defs["igPlotHistogram"][2]["defaults"]["overlay_text"] = "((void*)0)" +defs["igPlotHistogram"][2]["defaults"]["overlay_text"] = "NULL" defs["igPlotHistogram"][2]["defaults"]["scale_max"] = "FLT_MAX" defs["igPlotHistogram"][2]["defaults"]["scale_min"] = "FLT_MAX" defs["igPlotHistogram"][2]["defaults"]["values_offset"] = "0" defs["igPlotHistogram"][2]["funcname"] = "PlotHistogram" -defs["igPlotHistogram"][2]["location"] = "imgui" +defs["igPlotHistogram"][2]["location"] = "imgui:573" defs["igPlotHistogram"][2]["namespace"] = "ImGui" defs["igPlotHistogram"][2]["ov_cimguiname"] = "igPlotHistogramFnFloatPtr" defs["igPlotHistogram"][2]["ret"] = "void" @@ -17720,13 +17738,13 @@ defs["igPlotLines"][1]["call_args"] = "(label,values,values_count,values_offset, defs["igPlotLines"][1]["cimguiname"] = "igPlotLines" defs["igPlotLines"][1]["defaults"] = {} defs["igPlotLines"][1]["defaults"]["graph_size"] = "ImVec2(0,0)" -defs["igPlotLines"][1]["defaults"]["overlay_text"] = "((void*)0)" +defs["igPlotLines"][1]["defaults"]["overlay_text"] = "NULL" defs["igPlotLines"][1]["defaults"]["scale_max"] = "FLT_MAX" defs["igPlotLines"][1]["defaults"]["scale_min"] = "FLT_MAX" defs["igPlotLines"][1]["defaults"]["stride"] = "sizeof(float)" defs["igPlotLines"][1]["defaults"]["values_offset"] = "0" defs["igPlotLines"][1]["funcname"] = "PlotLines" -defs["igPlotLines"][1]["location"] = "imgui" +defs["igPlotLines"][1]["location"] = "imgui:570" defs["igPlotLines"][1]["namespace"] = "ImGui" defs["igPlotLines"][1]["ov_cimguiname"] = "igPlotLinesFloatPtr" defs["igPlotLines"][1]["ret"] = "void" @@ -17769,12 +17787,12 @@ defs["igPlotLines"][2]["call_args"] = "(label,values_getter,data,values_count,va defs["igPlotLines"][2]["cimguiname"] = "igPlotLines" defs["igPlotLines"][2]["defaults"] = {} defs["igPlotLines"][2]["defaults"]["graph_size"] = "ImVec2(0,0)" -defs["igPlotLines"][2]["defaults"]["overlay_text"] = "((void*)0)" +defs["igPlotLines"][2]["defaults"]["overlay_text"] = "NULL" defs["igPlotLines"][2]["defaults"]["scale_max"] = "FLT_MAX" defs["igPlotLines"][2]["defaults"]["scale_min"] = "FLT_MAX" defs["igPlotLines"][2]["defaults"]["values_offset"] = "0" defs["igPlotLines"][2]["funcname"] = "PlotLines" -defs["igPlotLines"][2]["location"] = "imgui" +defs["igPlotLines"][2]["location"] = "imgui:571" defs["igPlotLines"][2]["namespace"] = "ImGui" defs["igPlotLines"][2]["ov_cimguiname"] = "igPlotLinesFnFloatPtr" defs["igPlotLines"][2]["ret"] = "void" @@ -17791,7 +17809,7 @@ defs["igPopAllowKeyboardFocus"][1]["call_args"] = "()" defs["igPopAllowKeyboardFocus"][1]["cimguiname"] = "igPopAllowKeyboardFocus" defs["igPopAllowKeyboardFocus"][1]["defaults"] = {} defs["igPopAllowKeyboardFocus"][1]["funcname"] = "PopAllowKeyboardFocus" -defs["igPopAllowKeyboardFocus"][1]["location"] = "imgui" +defs["igPopAllowKeyboardFocus"][1]["location"] = "imgui:371" defs["igPopAllowKeyboardFocus"][1]["namespace"] = "ImGui" defs["igPopAllowKeyboardFocus"][1]["ov_cimguiname"] = "igPopAllowKeyboardFocus" defs["igPopAllowKeyboardFocus"][1]["ret"] = "void" @@ -17807,7 +17825,7 @@ defs["igPopButtonRepeat"][1]["call_args"] = "()" defs["igPopButtonRepeat"][1]["cimguiname"] = "igPopButtonRepeat" defs["igPopButtonRepeat"][1]["defaults"] = {} defs["igPopButtonRepeat"][1]["funcname"] = "PopButtonRepeat" -defs["igPopButtonRepeat"][1]["location"] = "imgui" +defs["igPopButtonRepeat"][1]["location"] = "imgui:373" defs["igPopButtonRepeat"][1]["namespace"] = "ImGui" defs["igPopButtonRepeat"][1]["ov_cimguiname"] = "igPopButtonRepeat" defs["igPopButtonRepeat"][1]["ret"] = "void" @@ -17823,7 +17841,7 @@ defs["igPopClipRect"][1]["call_args"] = "()" defs["igPopClipRect"][1]["cimguiname"] = "igPopClipRect" defs["igPopClipRect"][1]["defaults"] = {} defs["igPopClipRect"][1]["funcname"] = "PopClipRect" -defs["igPopClipRect"][1]["location"] = "imgui" +defs["igPopClipRect"][1]["location"] = "imgui:682" defs["igPopClipRect"][1]["namespace"] = "ImGui" defs["igPopClipRect"][1]["ov_cimguiname"] = "igPopClipRect" defs["igPopClipRect"][1]["ret"] = "void" @@ -17839,7 +17857,7 @@ defs["igPopColumnsBackground"][1]["call_args"] = "()" defs["igPopColumnsBackground"][1]["cimguiname"] = "igPopColumnsBackground" defs["igPopColumnsBackground"][1]["defaults"] = {} defs["igPopColumnsBackground"][1]["funcname"] = "PopColumnsBackground" -defs["igPopColumnsBackground"][1]["location"] = "internal" +defs["igPopColumnsBackground"][1]["location"] = "imgui_internal:1918" defs["igPopColumnsBackground"][1]["namespace"] = "ImGui" defs["igPopColumnsBackground"][1]["ov_cimguiname"] = "igPopColumnsBackground" defs["igPopColumnsBackground"][1]["ret"] = "void" @@ -17855,7 +17873,7 @@ defs["igPopFocusScope"][1]["call_args"] = "()" defs["igPopFocusScope"][1]["cimguiname"] = "igPopFocusScope" defs["igPopFocusScope"][1]["defaults"] = {} defs["igPopFocusScope"][1]["funcname"] = "PopFocusScope" -defs["igPopFocusScope"][1]["location"] = "internal" +defs["igPopFocusScope"][1]["location"] = "imgui_internal:1893" defs["igPopFocusScope"][1]["namespace"] = "ImGui" defs["igPopFocusScope"][1]["ov_cimguiname"] = "igPopFocusScope" defs["igPopFocusScope"][1]["ret"] = "void" @@ -17871,7 +17889,7 @@ defs["igPopFont"][1]["call_args"] = "()" defs["igPopFont"][1]["cimguiname"] = "igPopFont" defs["igPopFont"][1]["defaults"] = {} defs["igPopFont"][1]["funcname"] = "PopFont" -defs["igPopFont"][1]["location"] = "imgui" +defs["igPopFont"][1]["location"] = "imgui:348" defs["igPopFont"][1]["namespace"] = "ImGui" defs["igPopFont"][1]["ov_cimguiname"] = "igPopFont" defs["igPopFont"][1]["ret"] = "void" @@ -17887,7 +17905,7 @@ defs["igPopID"][1]["call_args"] = "()" defs["igPopID"][1]["cimguiname"] = "igPopID" defs["igPopID"][1]["defaults"] = {} defs["igPopID"][1]["funcname"] = "PopID" -defs["igPopID"][1]["location"] = "imgui" +defs["igPopID"][1]["location"] = "imgui:417" defs["igPopID"][1]["namespace"] = "ImGui" defs["igPopID"][1]["ov_cimguiname"] = "igPopID" defs["igPopID"][1]["ret"] = "void" @@ -17903,7 +17921,7 @@ defs["igPopItemFlag"][1]["call_args"] = "()" defs["igPopItemFlag"][1]["cimguiname"] = "igPopItemFlag" defs["igPopItemFlag"][1]["defaults"] = {} defs["igPopItemFlag"][1]["funcname"] = "PopItemFlag" -defs["igPopItemFlag"][1]["location"] = "internal" +defs["igPopItemFlag"][1]["location"] = "imgui_internal:1855" defs["igPopItemFlag"][1]["namespace"] = "ImGui" defs["igPopItemFlag"][1]["ov_cimguiname"] = "igPopItemFlag" defs["igPopItemFlag"][1]["ret"] = "void" @@ -17919,7 +17937,7 @@ defs["igPopItemWidth"][1]["call_args"] = "()" defs["igPopItemWidth"][1]["cimguiname"] = "igPopItemWidth" defs["igPopItemWidth"][1]["defaults"] = {} defs["igPopItemWidth"][1]["funcname"] = "PopItemWidth" -defs["igPopItemWidth"][1]["location"] = "imgui" +defs["igPopItemWidth"][1]["location"] = "imgui:365" defs["igPopItemWidth"][1]["namespace"] = "ImGui" defs["igPopItemWidth"][1]["ov_cimguiname"] = "igPopItemWidth" defs["igPopItemWidth"][1]["ret"] = "void" @@ -17939,7 +17957,7 @@ defs["igPopStyleColor"][1]["cimguiname"] = "igPopStyleColor" defs["igPopStyleColor"][1]["defaults"] = {} defs["igPopStyleColor"][1]["defaults"]["count"] = "1" defs["igPopStyleColor"][1]["funcname"] = "PopStyleColor" -defs["igPopStyleColor"][1]["location"] = "imgui" +defs["igPopStyleColor"][1]["location"] = "imgui:351" defs["igPopStyleColor"][1]["namespace"] = "ImGui" defs["igPopStyleColor"][1]["ov_cimguiname"] = "igPopStyleColor" defs["igPopStyleColor"][1]["ret"] = "void" @@ -17959,7 +17977,7 @@ defs["igPopStyleVar"][1]["cimguiname"] = "igPopStyleVar" defs["igPopStyleVar"][1]["defaults"] = {} defs["igPopStyleVar"][1]["defaults"]["count"] = "1" defs["igPopStyleVar"][1]["funcname"] = "PopStyleVar" -defs["igPopStyleVar"][1]["location"] = "imgui" +defs["igPopStyleVar"][1]["location"] = "imgui:354" defs["igPopStyleVar"][1]["namespace"] = "ImGui" defs["igPopStyleVar"][1]["ov_cimguiname"] = "igPopStyleVar" defs["igPopStyleVar"][1]["ret"] = "void" @@ -17975,7 +17993,7 @@ defs["igPopTextWrapPos"][1]["call_args"] = "()" defs["igPopTextWrapPos"][1]["cimguiname"] = "igPopTextWrapPos" defs["igPopTextWrapPos"][1]["defaults"] = {} defs["igPopTextWrapPos"][1]["funcname"] = "PopTextWrapPos" -defs["igPopTextWrapPos"][1]["location"] = "imgui" +defs["igPopTextWrapPos"][1]["location"] = "imgui:369" defs["igPopTextWrapPos"][1]["namespace"] = "ImGui" defs["igPopTextWrapPos"][1]["ov_cimguiname"] = "igPopTextWrapPos" defs["igPopTextWrapPos"][1]["ret"] = "void" @@ -17999,10 +18017,10 @@ defs["igProgressBar"][1]["argsoriginal"] = "(float fraction,const ImVec2& size_a defs["igProgressBar"][1]["call_args"] = "(fraction,size_arg,overlay)" defs["igProgressBar"][1]["cimguiname"] = "igProgressBar" defs["igProgressBar"][1]["defaults"] = {} -defs["igProgressBar"][1]["defaults"]["overlay"] = "((void*)0)" +defs["igProgressBar"][1]["defaults"]["overlay"] = "NULL" defs["igProgressBar"][1]["defaults"]["size_arg"] = "ImVec2(-1,0)" defs["igProgressBar"][1]["funcname"] = "ProgressBar" -defs["igProgressBar"][1]["location"] = "imgui" +defs["igProgressBar"][1]["location"] = "imgui:450" defs["igProgressBar"][1]["namespace"] = "ImGui" defs["igProgressBar"][1]["ov_cimguiname"] = "igProgressBar" defs["igProgressBar"][1]["ret"] = "void" @@ -18021,7 +18039,7 @@ defs["igPushAllowKeyboardFocus"][1]["call_args"] = "(allow_keyboard_focus)" defs["igPushAllowKeyboardFocus"][1]["cimguiname"] = "igPushAllowKeyboardFocus" defs["igPushAllowKeyboardFocus"][1]["defaults"] = {} defs["igPushAllowKeyboardFocus"][1]["funcname"] = "PushAllowKeyboardFocus" -defs["igPushAllowKeyboardFocus"][1]["location"] = "imgui" +defs["igPushAllowKeyboardFocus"][1]["location"] = "imgui:370" defs["igPushAllowKeyboardFocus"][1]["namespace"] = "ImGui" defs["igPushAllowKeyboardFocus"][1]["ov_cimguiname"] = "igPushAllowKeyboardFocus" defs["igPushAllowKeyboardFocus"][1]["ret"] = "void" @@ -18040,7 +18058,7 @@ defs["igPushButtonRepeat"][1]["call_args"] = "(repeat)" defs["igPushButtonRepeat"][1]["cimguiname"] = "igPushButtonRepeat" defs["igPushButtonRepeat"][1]["defaults"] = {} defs["igPushButtonRepeat"][1]["funcname"] = "PushButtonRepeat" -defs["igPushButtonRepeat"][1]["location"] = "imgui" +defs["igPushButtonRepeat"][1]["location"] = "imgui:372" defs["igPushButtonRepeat"][1]["namespace"] = "ImGui" defs["igPushButtonRepeat"][1]["ov_cimguiname"] = "igPushButtonRepeat" defs["igPushButtonRepeat"][1]["ret"] = "void" @@ -18065,7 +18083,7 @@ defs["igPushClipRect"][1]["call_args"] = "(clip_rect_min,clip_rect_max,intersect defs["igPushClipRect"][1]["cimguiname"] = "igPushClipRect" defs["igPushClipRect"][1]["defaults"] = {} defs["igPushClipRect"][1]["funcname"] = "PushClipRect" -defs["igPushClipRect"][1]["location"] = "imgui" +defs["igPushClipRect"][1]["location"] = "imgui:681" defs["igPushClipRect"][1]["namespace"] = "ImGui" defs["igPushClipRect"][1]["ov_cimguiname"] = "igPushClipRect" defs["igPushClipRect"][1]["ret"] = "void" @@ -18084,7 +18102,7 @@ defs["igPushColumnClipRect"][1]["call_args"] = "(column_index)" defs["igPushColumnClipRect"][1]["cimguiname"] = "igPushColumnClipRect" defs["igPushColumnClipRect"][1]["defaults"] = {} defs["igPushColumnClipRect"][1]["funcname"] = "PushColumnClipRect" -defs["igPushColumnClipRect"][1]["location"] = "internal" +defs["igPushColumnClipRect"][1]["location"] = "imgui_internal:1916" defs["igPushColumnClipRect"][1]["namespace"] = "ImGui" defs["igPushColumnClipRect"][1]["ov_cimguiname"] = "igPushColumnClipRect" defs["igPushColumnClipRect"][1]["ret"] = "void" @@ -18100,7 +18118,7 @@ defs["igPushColumnsBackground"][1]["call_args"] = "()" defs["igPushColumnsBackground"][1]["cimguiname"] = "igPushColumnsBackground" defs["igPushColumnsBackground"][1]["defaults"] = {} defs["igPushColumnsBackground"][1]["funcname"] = "PushColumnsBackground" -defs["igPushColumnsBackground"][1]["location"] = "internal" +defs["igPushColumnsBackground"][1]["location"] = "imgui_internal:1917" defs["igPushColumnsBackground"][1]["namespace"] = "ImGui" defs["igPushColumnsBackground"][1]["ov_cimguiname"] = "igPushColumnsBackground" defs["igPushColumnsBackground"][1]["ret"] = "void" @@ -18119,7 +18137,7 @@ defs["igPushFocusScope"][1]["call_args"] = "(id)" defs["igPushFocusScope"][1]["cimguiname"] = "igPushFocusScope" defs["igPushFocusScope"][1]["defaults"] = {} defs["igPushFocusScope"][1]["funcname"] = "PushFocusScope" -defs["igPushFocusScope"][1]["location"] = "internal" +defs["igPushFocusScope"][1]["location"] = "imgui_internal:1892" defs["igPushFocusScope"][1]["namespace"] = "ImGui" defs["igPushFocusScope"][1]["ov_cimguiname"] = "igPushFocusScope" defs["igPushFocusScope"][1]["ret"] = "void" @@ -18138,7 +18156,7 @@ defs["igPushFont"][1]["call_args"] = "(font)" defs["igPushFont"][1]["cimguiname"] = "igPushFont" defs["igPushFont"][1]["defaults"] = {} defs["igPushFont"][1]["funcname"] = "PushFont" -defs["igPushFont"][1]["location"] = "imgui" +defs["igPushFont"][1]["location"] = "imgui:347" defs["igPushFont"][1]["namespace"] = "ImGui" defs["igPushFont"][1]["ov_cimguiname"] = "igPushFont" defs["igPushFont"][1]["ret"] = "void" @@ -18157,7 +18175,7 @@ defs["igPushID"][1]["call_args"] = "(str_id)" defs["igPushID"][1]["cimguiname"] = "igPushID" defs["igPushID"][1]["defaults"] = {} defs["igPushID"][1]["funcname"] = "PushID" -defs["igPushID"][1]["location"] = "imgui" +defs["igPushID"][1]["location"] = "imgui:413" defs["igPushID"][1]["namespace"] = "ImGui" defs["igPushID"][1]["ov_cimguiname"] = "igPushIDStr" defs["igPushID"][1]["ret"] = "void" @@ -18177,7 +18195,7 @@ defs["igPushID"][2]["call_args"] = "(str_id_begin,str_id_end)" defs["igPushID"][2]["cimguiname"] = "igPushID" defs["igPushID"][2]["defaults"] = {} defs["igPushID"][2]["funcname"] = "PushID" -defs["igPushID"][2]["location"] = "imgui" +defs["igPushID"][2]["location"] = "imgui:414" defs["igPushID"][2]["namespace"] = "ImGui" defs["igPushID"][2]["ov_cimguiname"] = "igPushIDStrStr" defs["igPushID"][2]["ret"] = "void" @@ -18194,7 +18212,7 @@ defs["igPushID"][3]["call_args"] = "(ptr_id)" defs["igPushID"][3]["cimguiname"] = "igPushID" defs["igPushID"][3]["defaults"] = {} defs["igPushID"][3]["funcname"] = "PushID" -defs["igPushID"][3]["location"] = "imgui" +defs["igPushID"][3]["location"] = "imgui:415" defs["igPushID"][3]["namespace"] = "ImGui" defs["igPushID"][3]["ov_cimguiname"] = "igPushIDPtr" defs["igPushID"][3]["ret"] = "void" @@ -18211,7 +18229,7 @@ defs["igPushID"][4]["call_args"] = "(int_id)" defs["igPushID"][4]["cimguiname"] = "igPushID" defs["igPushID"][4]["defaults"] = {} defs["igPushID"][4]["funcname"] = "PushID" -defs["igPushID"][4]["location"] = "imgui" +defs["igPushID"][4]["location"] = "imgui:416" defs["igPushID"][4]["namespace"] = "ImGui" defs["igPushID"][4]["ov_cimguiname"] = "igPushIDInt" defs["igPushID"][4]["ret"] = "void" @@ -18236,7 +18254,7 @@ defs["igPushItemFlag"][1]["call_args"] = "(option,enabled)" defs["igPushItemFlag"][1]["cimguiname"] = "igPushItemFlag" defs["igPushItemFlag"][1]["defaults"] = {} defs["igPushItemFlag"][1]["funcname"] = "PushItemFlag" -defs["igPushItemFlag"][1]["location"] = "internal" +defs["igPushItemFlag"][1]["location"] = "imgui_internal:1854" defs["igPushItemFlag"][1]["namespace"] = "ImGui" defs["igPushItemFlag"][1]["ov_cimguiname"] = "igPushItemFlag" defs["igPushItemFlag"][1]["ret"] = "void" @@ -18255,7 +18273,7 @@ defs["igPushItemWidth"][1]["call_args"] = "(item_width)" defs["igPushItemWidth"][1]["cimguiname"] = "igPushItemWidth" defs["igPushItemWidth"][1]["defaults"] = {} defs["igPushItemWidth"][1]["funcname"] = "PushItemWidth" -defs["igPushItemWidth"][1]["location"] = "imgui" +defs["igPushItemWidth"][1]["location"] = "imgui:364" defs["igPushItemWidth"][1]["namespace"] = "ImGui" defs["igPushItemWidth"][1]["ov_cimguiname"] = "igPushItemWidth" defs["igPushItemWidth"][1]["ret"] = "void" @@ -18277,7 +18295,7 @@ defs["igPushMultiItemsWidths"][1]["call_args"] = "(components,width_full)" defs["igPushMultiItemsWidths"][1]["cimguiname"] = "igPushMultiItemsWidths" defs["igPushMultiItemsWidths"][1]["defaults"] = {} defs["igPushMultiItemsWidths"][1]["funcname"] = "PushMultiItemsWidths" -defs["igPushMultiItemsWidths"][1]["location"] = "internal" +defs["igPushMultiItemsWidths"][1]["location"] = "imgui_internal:1853" defs["igPushMultiItemsWidths"][1]["namespace"] = "ImGui" defs["igPushMultiItemsWidths"][1]["ov_cimguiname"] = "igPushMultiItemsWidths" defs["igPushMultiItemsWidths"][1]["ret"] = "void" @@ -18296,7 +18314,7 @@ defs["igPushOverrideID"][1]["call_args"] = "(id)" defs["igPushOverrideID"][1]["cimguiname"] = "igPushOverrideID" defs["igPushOverrideID"][1]["defaults"] = {} defs["igPushOverrideID"][1]["funcname"] = "PushOverrideID" -defs["igPushOverrideID"][1]["location"] = "internal" +defs["igPushOverrideID"][1]["location"] = "imgui_internal:1840" defs["igPushOverrideID"][1]["namespace"] = "ImGui" defs["igPushOverrideID"][1]["ov_cimguiname"] = "igPushOverrideID" defs["igPushOverrideID"][1]["ret"] = "void" @@ -18318,7 +18336,7 @@ defs["igPushStyleColor"][1]["call_args"] = "(idx,col)" defs["igPushStyleColor"][1]["cimguiname"] = "igPushStyleColor" defs["igPushStyleColor"][1]["defaults"] = {} defs["igPushStyleColor"][1]["funcname"] = "PushStyleColor" -defs["igPushStyleColor"][1]["location"] = "imgui" +defs["igPushStyleColor"][1]["location"] = "imgui:349" defs["igPushStyleColor"][1]["namespace"] = "ImGui" defs["igPushStyleColor"][1]["ov_cimguiname"] = "igPushStyleColorU32" defs["igPushStyleColor"][1]["ret"] = "void" @@ -18338,7 +18356,7 @@ defs["igPushStyleColor"][2]["call_args"] = "(idx,col)" defs["igPushStyleColor"][2]["cimguiname"] = "igPushStyleColor" defs["igPushStyleColor"][2]["defaults"] = {} defs["igPushStyleColor"][2]["funcname"] = "PushStyleColor" -defs["igPushStyleColor"][2]["location"] = "imgui" +defs["igPushStyleColor"][2]["location"] = "imgui:350" defs["igPushStyleColor"][2]["namespace"] = "ImGui" defs["igPushStyleColor"][2]["ov_cimguiname"] = "igPushStyleColorVec4" defs["igPushStyleColor"][2]["ret"] = "void" @@ -18361,7 +18379,7 @@ defs["igPushStyleVar"][1]["call_args"] = "(idx,val)" defs["igPushStyleVar"][1]["cimguiname"] = "igPushStyleVar" defs["igPushStyleVar"][1]["defaults"] = {} defs["igPushStyleVar"][1]["funcname"] = "PushStyleVar" -defs["igPushStyleVar"][1]["location"] = "imgui" +defs["igPushStyleVar"][1]["location"] = "imgui:352" defs["igPushStyleVar"][1]["namespace"] = "ImGui" defs["igPushStyleVar"][1]["ov_cimguiname"] = "igPushStyleVarFloat" defs["igPushStyleVar"][1]["ret"] = "void" @@ -18381,7 +18399,7 @@ defs["igPushStyleVar"][2]["call_args"] = "(idx,val)" defs["igPushStyleVar"][2]["cimguiname"] = "igPushStyleVar" defs["igPushStyleVar"][2]["defaults"] = {} defs["igPushStyleVar"][2]["funcname"] = "PushStyleVar" -defs["igPushStyleVar"][2]["location"] = "imgui" +defs["igPushStyleVar"][2]["location"] = "imgui:353" defs["igPushStyleVar"][2]["namespace"] = "ImGui" defs["igPushStyleVar"][2]["ov_cimguiname"] = "igPushStyleVarVec2" defs["igPushStyleVar"][2]["ret"] = "void" @@ -18402,7 +18420,7 @@ defs["igPushTextWrapPos"][1]["cimguiname"] = "igPushTextWrapPos" defs["igPushTextWrapPos"][1]["defaults"] = {} defs["igPushTextWrapPos"][1]["defaults"]["wrap_local_pos_x"] = "0.0f" defs["igPushTextWrapPos"][1]["funcname"] = "PushTextWrapPos" -defs["igPushTextWrapPos"][1]["location"] = "imgui" +defs["igPushTextWrapPos"][1]["location"] = "imgui:368" defs["igPushTextWrapPos"][1]["namespace"] = "ImGui" defs["igPushTextWrapPos"][1]["ov_cimguiname"] = "igPushTextWrapPos" defs["igPushTextWrapPos"][1]["ret"] = "void" @@ -18424,7 +18442,7 @@ defs["igRadioButton"][1]["call_args"] = "(label,active)" defs["igRadioButton"][1]["cimguiname"] = "igRadioButton" defs["igRadioButton"][1]["defaults"] = {} defs["igRadioButton"][1]["funcname"] = "RadioButton" -defs["igRadioButton"][1]["location"] = "imgui" +defs["igRadioButton"][1]["location"] = "imgui:448" defs["igRadioButton"][1]["namespace"] = "ImGui" defs["igRadioButton"][1]["ov_cimguiname"] = "igRadioButtonBool" defs["igRadioButton"][1]["ret"] = "bool" @@ -18447,7 +18465,7 @@ defs["igRadioButton"][2]["call_args"] = "(label,v,v_button)" defs["igRadioButton"][2]["cimguiname"] = "igRadioButton" defs["igRadioButton"][2]["defaults"] = {} defs["igRadioButton"][2]["funcname"] = "RadioButton" -defs["igRadioButton"][2]["location"] = "imgui" +defs["igRadioButton"][2]["location"] = "imgui:449" defs["igRadioButton"][2]["namespace"] = "ImGui" defs["igRadioButton"][2]["ov_cimguiname"] = "igRadioButtonIntPtr" defs["igRadioButton"][2]["ret"] = "bool" @@ -18464,7 +18482,7 @@ defs["igRender"][1]["call_args"] = "()" defs["igRender"][1]["cimguiname"] = "igRender" defs["igRender"][1]["defaults"] = {} defs["igRender"][1]["funcname"] = "Render" -defs["igRender"][1]["location"] = "imgui" +defs["igRender"][1]["location"] = "imgui:254" defs["igRender"][1]["namespace"] = "ImGui" defs["igRender"][1]["ov_cimguiname"] = "igRender" defs["igRender"][1]["ret"] = "void" @@ -18496,7 +18514,7 @@ defs["igRenderArrow"][1]["cimguiname"] = "igRenderArrow" defs["igRenderArrow"][1]["defaults"] = {} defs["igRenderArrow"][1]["defaults"]["scale"] = "1.0f" defs["igRenderArrow"][1]["funcname"] = "RenderArrow" -defs["igRenderArrow"][1]["location"] = "internal" +defs["igRenderArrow"][1]["location"] = "imgui_internal:1951" defs["igRenderArrow"][1]["namespace"] = "ImGui" defs["igRenderArrow"][1]["ov_cimguiname"] = "igRenderArrow" defs["igRenderArrow"][1]["ret"] = "void" @@ -18527,7 +18545,7 @@ defs["igRenderArrowPointingAt"][1]["call_args"] = "(draw_list,pos,half_sz,direct defs["igRenderArrowPointingAt"][1]["cimguiname"] = "igRenderArrowPointingAt" defs["igRenderArrowPointingAt"][1]["defaults"] = {} defs["igRenderArrowPointingAt"][1]["funcname"] = "RenderArrowPointingAt" -defs["igRenderArrowPointingAt"][1]["location"] = "internal" +defs["igRenderArrowPointingAt"][1]["location"] = "imgui_internal:1955" defs["igRenderArrowPointingAt"][1]["namespace"] = "ImGui" defs["igRenderArrowPointingAt"][1]["ov_cimguiname"] = "igRenderArrowPointingAt" defs["igRenderArrowPointingAt"][1]["ret"] = "void" @@ -18552,7 +18570,7 @@ defs["igRenderBullet"][1]["call_args"] = "(draw_list,pos,col)" defs["igRenderBullet"][1]["cimguiname"] = "igRenderBullet" defs["igRenderBullet"][1]["defaults"] = {} defs["igRenderBullet"][1]["funcname"] = "RenderBullet" -defs["igRenderBullet"][1]["location"] = "internal" +defs["igRenderBullet"][1]["location"] = "imgui_internal:1952" defs["igRenderBullet"][1]["namespace"] = "ImGui" defs["igRenderBullet"][1]["ov_cimguiname"] = "igRenderBullet" defs["igRenderBullet"][1]["ret"] = "void" @@ -18580,7 +18598,7 @@ defs["igRenderCheckMark"][1]["call_args"] = "(draw_list,pos,col,sz)" defs["igRenderCheckMark"][1]["cimguiname"] = "igRenderCheckMark" defs["igRenderCheckMark"][1]["defaults"] = {} defs["igRenderCheckMark"][1]["funcname"] = "RenderCheckMark" -defs["igRenderCheckMark"][1]["location"] = "internal" +defs["igRenderCheckMark"][1]["location"] = "imgui_internal:1953" defs["igRenderCheckMark"][1]["namespace"] = "ImGui" defs["igRenderCheckMark"][1]["ov_cimguiname"] = "igRenderCheckMark" defs["igRenderCheckMark"][1]["ret"] = "void" @@ -18622,7 +18640,7 @@ defs["igRenderColorRectWithAlphaCheckerboard"][1]["defaults"] = {} defs["igRenderColorRectWithAlphaCheckerboard"][1]["defaults"]["rounding"] = "0.0f" defs["igRenderColorRectWithAlphaCheckerboard"][1]["defaults"]["rounding_corners_flags"] = "~0" defs["igRenderColorRectWithAlphaCheckerboard"][1]["funcname"] = "RenderColorRectWithAlphaCheckerboard" -defs["igRenderColorRectWithAlphaCheckerboard"][1]["location"] = "internal" +defs["igRenderColorRectWithAlphaCheckerboard"][1]["location"] = "imgui_internal:1945" defs["igRenderColorRectWithAlphaCheckerboard"][1]["namespace"] = "ImGui" defs["igRenderColorRectWithAlphaCheckerboard"][1]["ov_cimguiname"] = "igRenderColorRectWithAlphaCheckerboard" defs["igRenderColorRectWithAlphaCheckerboard"][1]["ret"] = "void" @@ -18655,7 +18673,7 @@ defs["igRenderFrame"][1]["defaults"] = {} defs["igRenderFrame"][1]["defaults"]["border"] = "true" defs["igRenderFrame"][1]["defaults"]["rounding"] = "0.0f" defs["igRenderFrame"][1]["funcname"] = "RenderFrame" -defs["igRenderFrame"][1]["location"] = "internal" +defs["igRenderFrame"][1]["location"] = "imgui_internal:1943" defs["igRenderFrame"][1]["namespace"] = "ImGui" defs["igRenderFrame"][1]["ov_cimguiname"] = "igRenderFrame" defs["igRenderFrame"][1]["ret"] = "void" @@ -18681,7 +18699,7 @@ defs["igRenderFrameBorder"][1]["cimguiname"] = "igRenderFrameBorder" defs["igRenderFrameBorder"][1]["defaults"] = {} defs["igRenderFrameBorder"][1]["defaults"]["rounding"] = "0.0f" defs["igRenderFrameBorder"][1]["funcname"] = "RenderFrameBorder" -defs["igRenderFrameBorder"][1]["location"] = "internal" +defs["igRenderFrameBorder"][1]["location"] = "imgui_internal:1944" defs["igRenderFrameBorder"][1]["namespace"] = "ImGui" defs["igRenderFrameBorder"][1]["ov_cimguiname"] = "igRenderFrameBorder" defs["igRenderFrameBorder"][1]["ret"] = "void" @@ -18718,7 +18736,7 @@ defs["igRenderMouseCursor"][1]["call_args"] = "(draw_list,pos,scale,mouse_cursor defs["igRenderMouseCursor"][1]["cimguiname"] = "igRenderMouseCursor" defs["igRenderMouseCursor"][1]["defaults"] = {} defs["igRenderMouseCursor"][1]["funcname"] = "RenderMouseCursor" -defs["igRenderMouseCursor"][1]["location"] = "internal" +defs["igRenderMouseCursor"][1]["location"] = "imgui_internal:1954" defs["igRenderMouseCursor"][1]["namespace"] = "ImGui" defs["igRenderMouseCursor"][1]["ov_cimguiname"] = "igRenderMouseCursor" defs["igRenderMouseCursor"][1]["ret"] = "void" @@ -18744,7 +18762,7 @@ defs["igRenderNavHighlight"][1]["cimguiname"] = "igRenderNavHighlight" defs["igRenderNavHighlight"][1]["defaults"] = {} defs["igRenderNavHighlight"][1]["defaults"]["flags"] = "ImGuiNavHighlightFlags_TypeDefault" defs["igRenderNavHighlight"][1]["funcname"] = "RenderNavHighlight" -defs["igRenderNavHighlight"][1]["location"] = "internal" +defs["igRenderNavHighlight"][1]["location"] = "imgui_internal:1946" defs["igRenderNavHighlight"][1]["namespace"] = "ImGui" defs["igRenderNavHighlight"][1]["ov_cimguiname"] = "igRenderNavHighlight" defs["igRenderNavHighlight"][1]["ret"] = "void" @@ -18778,7 +18796,7 @@ defs["igRenderRectFilledRangeH"][1]["call_args"] = "(draw_list,rect,col,x_start_ defs["igRenderRectFilledRangeH"][1]["cimguiname"] = "igRenderRectFilledRangeH" defs["igRenderRectFilledRangeH"][1]["defaults"] = {} defs["igRenderRectFilledRangeH"][1]["funcname"] = "RenderRectFilledRangeH" -defs["igRenderRectFilledRangeH"][1]["location"] = "internal" +defs["igRenderRectFilledRangeH"][1]["location"] = "imgui_internal:1956" defs["igRenderRectFilledRangeH"][1]["namespace"] = "ImGui" defs["igRenderRectFilledRangeH"][1]["ov_cimguiname"] = "igRenderRectFilledRangeH" defs["igRenderRectFilledRangeH"][1]["ret"] = "void" @@ -18809,7 +18827,7 @@ defs["igRenderRectFilledWithHole"][1]["call_args"] = "(draw_list,outer,inner,col defs["igRenderRectFilledWithHole"][1]["cimguiname"] = "igRenderRectFilledWithHole" defs["igRenderRectFilledWithHole"][1]["defaults"] = {} defs["igRenderRectFilledWithHole"][1]["funcname"] = "RenderRectFilledWithHole" -defs["igRenderRectFilledWithHole"][1]["location"] = "internal" +defs["igRenderRectFilledWithHole"][1]["location"] = "imgui_internal:1957" defs["igRenderRectFilledWithHole"][1]["namespace"] = "ImGui" defs["igRenderRectFilledWithHole"][1]["ov_cimguiname"] = "igRenderRectFilledWithHole" defs["igRenderRectFilledWithHole"][1]["ret"] = "void" @@ -18837,9 +18855,9 @@ defs["igRenderText"][1]["call_args"] = "(pos,text,text_end,hide_text_after_hash) defs["igRenderText"][1]["cimguiname"] = "igRenderText" defs["igRenderText"][1]["defaults"] = {} defs["igRenderText"][1]["defaults"]["hide_text_after_hash"] = "true" -defs["igRenderText"][1]["defaults"]["text_end"] = "((void*)0)" +defs["igRenderText"][1]["defaults"]["text_end"] = "NULL" defs["igRenderText"][1]["funcname"] = "RenderText" -defs["igRenderText"][1]["location"] = "internal" +defs["igRenderText"][1]["location"] = "imgui_internal:1938" defs["igRenderText"][1]["namespace"] = "ImGui" defs["igRenderText"][1]["ov_cimguiname"] = "igRenderText" defs["igRenderText"][1]["ret"] = "void" @@ -18876,9 +18894,9 @@ defs["igRenderTextClipped"][1]["call_args"] = "(pos_min,pos_max,text,text_end,te defs["igRenderTextClipped"][1]["cimguiname"] = "igRenderTextClipped" defs["igRenderTextClipped"][1]["defaults"] = {} defs["igRenderTextClipped"][1]["defaults"]["align"] = "ImVec2(0,0)" -defs["igRenderTextClipped"][1]["defaults"]["clip_rect"] = "((void*)0)" +defs["igRenderTextClipped"][1]["defaults"]["clip_rect"] = "NULL" defs["igRenderTextClipped"][1]["funcname"] = "RenderTextClipped" -defs["igRenderTextClipped"][1]["location"] = "internal" +defs["igRenderTextClipped"][1]["location"] = "imgui_internal:1940" defs["igRenderTextClipped"][1]["namespace"] = "ImGui" defs["igRenderTextClipped"][1]["ov_cimguiname"] = "igRenderTextClipped" defs["igRenderTextClipped"][1]["ret"] = "void" @@ -18918,9 +18936,9 @@ defs["igRenderTextClippedEx"][1]["call_args"] = "(draw_list,pos_min,pos_max,text defs["igRenderTextClippedEx"][1]["cimguiname"] = "igRenderTextClippedEx" defs["igRenderTextClippedEx"][1]["defaults"] = {} defs["igRenderTextClippedEx"][1]["defaults"]["align"] = "ImVec2(0,0)" -defs["igRenderTextClippedEx"][1]["defaults"]["clip_rect"] = "((void*)0)" +defs["igRenderTextClippedEx"][1]["defaults"]["clip_rect"] = "NULL" defs["igRenderTextClippedEx"][1]["funcname"] = "RenderTextClippedEx" -defs["igRenderTextClippedEx"][1]["location"] = "internal" +defs["igRenderTextClippedEx"][1]["location"] = "imgui_internal:1941" defs["igRenderTextClippedEx"][1]["namespace"] = "ImGui" defs["igRenderTextClippedEx"][1]["ov_cimguiname"] = "igRenderTextClippedEx" defs["igRenderTextClippedEx"][1]["ret"] = "void" @@ -18960,7 +18978,7 @@ defs["igRenderTextEllipsis"][1]["call_args"] = "(draw_list,pos_min,pos_max,clip_ defs["igRenderTextEllipsis"][1]["cimguiname"] = "igRenderTextEllipsis" defs["igRenderTextEllipsis"][1]["defaults"] = {} defs["igRenderTextEllipsis"][1]["funcname"] = "RenderTextEllipsis" -defs["igRenderTextEllipsis"][1]["location"] = "internal" +defs["igRenderTextEllipsis"][1]["location"] = "imgui_internal:1942" defs["igRenderTextEllipsis"][1]["namespace"] = "ImGui" defs["igRenderTextEllipsis"][1]["ov_cimguiname"] = "igRenderTextEllipsis" defs["igRenderTextEllipsis"][1]["ret"] = "void" @@ -18988,7 +19006,7 @@ defs["igRenderTextWrapped"][1]["call_args"] = "(pos,text,text_end,wrap_width)" defs["igRenderTextWrapped"][1]["cimguiname"] = "igRenderTextWrapped" defs["igRenderTextWrapped"][1]["defaults"] = {} defs["igRenderTextWrapped"][1]["funcname"] = "RenderTextWrapped" -defs["igRenderTextWrapped"][1]["location"] = "internal" +defs["igRenderTextWrapped"][1]["location"] = "imgui_internal:1939" defs["igRenderTextWrapped"][1]["namespace"] = "ImGui" defs["igRenderTextWrapped"][1]["ov_cimguiname"] = "igRenderTextWrapped" defs["igRenderTextWrapped"][1]["ret"] = "void" @@ -19008,7 +19026,7 @@ defs["igResetMouseDragDelta"][1]["cimguiname"] = "igResetMouseDragDelta" defs["igResetMouseDragDelta"][1]["defaults"] = {} defs["igResetMouseDragDelta"][1]["defaults"]["button"] = "0" defs["igResetMouseDragDelta"][1]["funcname"] = "ResetMouseDragDelta" -defs["igResetMouseDragDelta"][1]["location"] = "imgui" +defs["igResetMouseDragDelta"][1]["location"] = "imgui:759" defs["igResetMouseDragDelta"][1]["namespace"] = "ImGui" defs["igResetMouseDragDelta"][1]["ov_cimguiname"] = "igResetMouseDragDelta" defs["igResetMouseDragDelta"][1]["ret"] = "void" @@ -19032,7 +19050,7 @@ defs["igSameLine"][1]["defaults"] = {} defs["igSameLine"][1]["defaults"]["offset_from_start_x"] = "0.0f" defs["igSameLine"][1]["defaults"]["spacing"] = "-1.0f" defs["igSameLine"][1]["funcname"] = "SameLine" -defs["igSameLine"][1]["location"] = "imgui" +defs["igSameLine"][1]["location"] = "imgui:383" defs["igSameLine"][1]["namespace"] = "ImGui" defs["igSameLine"][1]["ov_cimguiname"] = "igSameLine" defs["igSameLine"][1]["ret"] = "void" @@ -19051,7 +19069,7 @@ defs["igSaveIniSettingsToDisk"][1]["call_args"] = "(ini_filename)" defs["igSaveIniSettingsToDisk"][1]["cimguiname"] = "igSaveIniSettingsToDisk" defs["igSaveIniSettingsToDisk"][1]["defaults"] = {} defs["igSaveIniSettingsToDisk"][1]["funcname"] = "SaveIniSettingsToDisk" -defs["igSaveIniSettingsToDisk"][1]["location"] = "imgui" +defs["igSaveIniSettingsToDisk"][1]["location"] = "imgui:774" defs["igSaveIniSettingsToDisk"][1]["namespace"] = "ImGui" defs["igSaveIniSettingsToDisk"][1]["ov_cimguiname"] = "igSaveIniSettingsToDisk" defs["igSaveIniSettingsToDisk"][1]["ret"] = "void" @@ -19069,9 +19087,9 @@ defs["igSaveIniSettingsToMemory"][1]["argsoriginal"] = "(size_t* out_ini_size=(( defs["igSaveIniSettingsToMemory"][1]["call_args"] = "(out_ini_size)" defs["igSaveIniSettingsToMemory"][1]["cimguiname"] = "igSaveIniSettingsToMemory" defs["igSaveIniSettingsToMemory"][1]["defaults"] = {} -defs["igSaveIniSettingsToMemory"][1]["defaults"]["out_ini_size"] = "((void*)0)" +defs["igSaveIniSettingsToMemory"][1]["defaults"]["out_ini_size"] = "NULL" defs["igSaveIniSettingsToMemory"][1]["funcname"] = "SaveIniSettingsToMemory" -defs["igSaveIniSettingsToMemory"][1]["location"] = "imgui" +defs["igSaveIniSettingsToMemory"][1]["location"] = "imgui:775" defs["igSaveIniSettingsToMemory"][1]["namespace"] = "ImGui" defs["igSaveIniSettingsToMemory"][1]["ov_cimguiname"] = "igSaveIniSettingsToMemory" defs["igSaveIniSettingsToMemory"][1]["ret"] = "const char*" @@ -19096,7 +19114,7 @@ defs["igScrollToBringRectIntoView"][1]["call_args"] = "(window,item_rect)" defs["igScrollToBringRectIntoView"][1]["cimguiname"] = "igScrollToBringRectIntoView" defs["igScrollToBringRectIntoView"][1]["defaults"] = {} defs["igScrollToBringRectIntoView"][1]["funcname"] = "ScrollToBringRectIntoView" -defs["igScrollToBringRectIntoView"][1]["location"] = "internal" +defs["igScrollToBringRectIntoView"][1]["location"] = "imgui_internal:1826" defs["igScrollToBringRectIntoView"][1]["namespace"] = "ImGui" defs["igScrollToBringRectIntoView"][1]["nonUDT"] = 1 defs["igScrollToBringRectIntoView"][1]["ov_cimguiname"] = "igScrollToBringRectIntoView" @@ -19116,7 +19134,7 @@ defs["igScrollbar"][1]["call_args"] = "(axis)" defs["igScrollbar"][1]["cimguiname"] = "igScrollbar" defs["igScrollbar"][1]["defaults"] = {} defs["igScrollbar"][1]["funcname"] = "Scrollbar" -defs["igScrollbar"][1]["location"] = "internal" +defs["igScrollbar"][1]["location"] = "imgui_internal:1971" defs["igScrollbar"][1]["namespace"] = "ImGui" defs["igScrollbar"][1]["ov_cimguiname"] = "igScrollbar" defs["igScrollbar"][1]["ret"] = "void" @@ -19153,7 +19171,7 @@ defs["igScrollbarEx"][1]["call_args"] = "(bb,id,axis,p_scroll_v,avail_v,contents defs["igScrollbarEx"][1]["cimguiname"] = "igScrollbarEx" defs["igScrollbarEx"][1]["defaults"] = {} defs["igScrollbarEx"][1]["funcname"] = "ScrollbarEx" -defs["igScrollbarEx"][1]["location"] = "internal" +defs["igScrollbarEx"][1]["location"] = "imgui_internal:1972" defs["igScrollbarEx"][1]["namespace"] = "ImGui" defs["igScrollbarEx"][1]["ov_cimguiname"] = "igScrollbarEx" defs["igScrollbarEx"][1]["ret"] = "bool" @@ -19184,7 +19202,7 @@ defs["igSelectable"][1]["defaults"]["flags"] = "0" defs["igSelectable"][1]["defaults"]["selected"] = "false" defs["igSelectable"][1]["defaults"]["size"] = "ImVec2(0,0)" defs["igSelectable"][1]["funcname"] = "Selectable" -defs["igSelectable"][1]["location"] = "imgui" +defs["igSelectable"][1]["location"] = "imgui:558" defs["igSelectable"][1]["namespace"] = "ImGui" defs["igSelectable"][1]["ov_cimguiname"] = "igSelectableBool" defs["igSelectable"][1]["ret"] = "bool" @@ -19212,7 +19230,7 @@ defs["igSelectable"][2]["defaults"] = {} defs["igSelectable"][2]["defaults"]["flags"] = "0" defs["igSelectable"][2]["defaults"]["size"] = "ImVec2(0,0)" defs["igSelectable"][2]["funcname"] = "Selectable" -defs["igSelectable"][2]["location"] = "imgui" +defs["igSelectable"][2]["location"] = "imgui:559" defs["igSelectable"][2]["namespace"] = "ImGui" defs["igSelectable"][2]["ov_cimguiname"] = "igSelectableBoolPtr" defs["igSelectable"][2]["ret"] = "bool" @@ -19229,7 +19247,7 @@ defs["igSeparator"][1]["call_args"] = "()" defs["igSeparator"][1]["cimguiname"] = "igSeparator" defs["igSeparator"][1]["defaults"] = {} defs["igSeparator"][1]["funcname"] = "Separator" -defs["igSeparator"][1]["location"] = "imgui" +defs["igSeparator"][1]["location"] = "imgui:382" defs["igSeparator"][1]["namespace"] = "ImGui" defs["igSeparator"][1]["ov_cimguiname"] = "igSeparator" defs["igSeparator"][1]["ret"] = "void" @@ -19248,7 +19266,7 @@ defs["igSeparatorEx"][1]["call_args"] = "(flags)" defs["igSeparatorEx"][1]["cimguiname"] = "igSeparatorEx" defs["igSeparatorEx"][1]["defaults"] = {} defs["igSeparatorEx"][1]["funcname"] = "SeparatorEx" -defs["igSeparatorEx"][1]["location"] = "internal" +defs["igSeparatorEx"][1]["location"] = "imgui_internal:1977" defs["igSeparatorEx"][1]["namespace"] = "ImGui" defs["igSeparatorEx"][1]["ov_cimguiname"] = "igSeparatorEx" defs["igSeparatorEx"][1]["ret"] = "void" @@ -19270,7 +19288,7 @@ defs["igSetActiveID"][1]["call_args"] = "(id,window)" defs["igSetActiveID"][1]["cimguiname"] = "igSetActiveID" defs["igSetActiveID"][1]["defaults"] = {} defs["igSetActiveID"][1]["funcname"] = "SetActiveID" -defs["igSetActiveID"][1]["location"] = "internal" +defs["igSetActiveID"][1]["location"] = "imgui_internal:1833" defs["igSetActiveID"][1]["namespace"] = "ImGui" defs["igSetActiveID"][1]["ov_cimguiname"] = "igSetActiveID" defs["igSetActiveID"][1]["ret"] = "void" @@ -19298,9 +19316,9 @@ defs["igSetAllocatorFunctions"][1]["argsoriginal"] = "(void*(*alloc_func)(size_t defs["igSetAllocatorFunctions"][1]["call_args"] = "(alloc_func,free_func,user_data)" defs["igSetAllocatorFunctions"][1]["cimguiname"] = "igSetAllocatorFunctions" defs["igSetAllocatorFunctions"][1]["defaults"] = {} -defs["igSetAllocatorFunctions"][1]["defaults"]["user_data"] = "((void*)0)" +defs["igSetAllocatorFunctions"][1]["defaults"]["user_data"] = "NULL" defs["igSetAllocatorFunctions"][1]["funcname"] = "SetAllocatorFunctions" -defs["igSetAllocatorFunctions"][1]["location"] = "imgui" +defs["igSetAllocatorFunctions"][1]["location"] = "imgui:783" defs["igSetAllocatorFunctions"][1]["namespace"] = "ImGui" defs["igSetAllocatorFunctions"][1]["ov_cimguiname"] = "igSetAllocatorFunctions" defs["igSetAllocatorFunctions"][1]["ret"] = "void" @@ -19319,7 +19337,7 @@ defs["igSetClipboardText"][1]["call_args"] = "(text)" defs["igSetClipboardText"][1]["cimguiname"] = "igSetClipboardText" defs["igSetClipboardText"][1]["defaults"] = {} defs["igSetClipboardText"][1]["funcname"] = "SetClipboardText" -defs["igSetClipboardText"][1]["location"] = "imgui" +defs["igSetClipboardText"][1]["location"] = "imgui:767" defs["igSetClipboardText"][1]["namespace"] = "ImGui" defs["igSetClipboardText"][1]["ov_cimguiname"] = "igSetClipboardText" defs["igSetClipboardText"][1]["ret"] = "void" @@ -19338,7 +19356,7 @@ defs["igSetColorEditOptions"][1]["call_args"] = "(flags)" defs["igSetColorEditOptions"][1]["cimguiname"] = "igSetColorEditOptions" defs["igSetColorEditOptions"][1]["defaults"] = {} defs["igSetColorEditOptions"][1]["funcname"] = "SetColorEditOptions" -defs["igSetColorEditOptions"][1]["location"] = "imgui" +defs["igSetColorEditOptions"][1]["location"] = "imgui:533" defs["igSetColorEditOptions"][1]["namespace"] = "ImGui" defs["igSetColorEditOptions"][1]["ov_cimguiname"] = "igSetColorEditOptions" defs["igSetColorEditOptions"][1]["ret"] = "void" @@ -19360,7 +19378,7 @@ defs["igSetColumnOffset"][1]["call_args"] = "(column_index,offset_x)" defs["igSetColumnOffset"][1]["cimguiname"] = "igSetColumnOffset" defs["igSetColumnOffset"][1]["defaults"] = {} defs["igSetColumnOffset"][1]["funcname"] = "SetColumnOffset" -defs["igSetColumnOffset"][1]["location"] = "imgui" +defs["igSetColumnOffset"][1]["location"] = "imgui:650" defs["igSetColumnOffset"][1]["namespace"] = "ImGui" defs["igSetColumnOffset"][1]["ov_cimguiname"] = "igSetColumnOffset" defs["igSetColumnOffset"][1]["ret"] = "void" @@ -19382,7 +19400,7 @@ defs["igSetColumnWidth"][1]["call_args"] = "(column_index,width)" defs["igSetColumnWidth"][1]["cimguiname"] = "igSetColumnWidth" defs["igSetColumnWidth"][1]["defaults"] = {} defs["igSetColumnWidth"][1]["funcname"] = "SetColumnWidth" -defs["igSetColumnWidth"][1]["location"] = "imgui" +defs["igSetColumnWidth"][1]["location"] = "imgui:648" defs["igSetColumnWidth"][1]["namespace"] = "ImGui" defs["igSetColumnWidth"][1]["ov_cimguiname"] = "igSetColumnWidth" defs["igSetColumnWidth"][1]["ret"] = "void" @@ -19401,7 +19419,7 @@ defs["igSetCurrentContext"][1]["call_args"] = "(ctx)" defs["igSetCurrentContext"][1]["cimguiname"] = "igSetCurrentContext" defs["igSetCurrentContext"][1]["defaults"] = {} defs["igSetCurrentContext"][1]["funcname"] = "SetCurrentContext" -defs["igSetCurrentContext"][1]["location"] = "imgui" +defs["igSetCurrentContext"][1]["location"] = "imgui:247" defs["igSetCurrentContext"][1]["namespace"] = "ImGui" defs["igSetCurrentContext"][1]["ov_cimguiname"] = "igSetCurrentContext" defs["igSetCurrentContext"][1]["ret"] = "void" @@ -19420,7 +19438,7 @@ defs["igSetCurrentFont"][1]["call_args"] = "(font)" defs["igSetCurrentFont"][1]["cimguiname"] = "igSetCurrentFont" defs["igSetCurrentFont"][1]["defaults"] = {} defs["igSetCurrentFont"][1]["funcname"] = "SetCurrentFont" -defs["igSetCurrentFont"][1]["location"] = "internal" +defs["igSetCurrentFont"][1]["location"] = "imgui_internal:1797" defs["igSetCurrentFont"][1]["namespace"] = "ImGui" defs["igSetCurrentFont"][1]["ov_cimguiname"] = "igSetCurrentFont" defs["igSetCurrentFont"][1]["ret"] = "void" @@ -19439,7 +19457,7 @@ defs["igSetCursorPos"][1]["call_args"] = "(local_pos)" defs["igSetCursorPos"][1]["cimguiname"] = "igSetCursorPos" defs["igSetCursorPos"][1]["defaults"] = {} defs["igSetCursorPos"][1]["funcname"] = "SetCursorPos" -defs["igSetCursorPos"][1]["location"] = "imgui" +defs["igSetCursorPos"][1]["location"] = "imgui:394" defs["igSetCursorPos"][1]["namespace"] = "ImGui" defs["igSetCursorPos"][1]["ov_cimguiname"] = "igSetCursorPos" defs["igSetCursorPos"][1]["ret"] = "void" @@ -19458,7 +19476,7 @@ defs["igSetCursorPosX"][1]["call_args"] = "(local_x)" defs["igSetCursorPosX"][1]["cimguiname"] = "igSetCursorPosX" defs["igSetCursorPosX"][1]["defaults"] = {} defs["igSetCursorPosX"][1]["funcname"] = "SetCursorPosX" -defs["igSetCursorPosX"][1]["location"] = "imgui" +defs["igSetCursorPosX"][1]["location"] = "imgui:395" defs["igSetCursorPosX"][1]["namespace"] = "ImGui" defs["igSetCursorPosX"][1]["ov_cimguiname"] = "igSetCursorPosX" defs["igSetCursorPosX"][1]["ret"] = "void" @@ -19477,7 +19495,7 @@ defs["igSetCursorPosY"][1]["call_args"] = "(local_y)" defs["igSetCursorPosY"][1]["cimguiname"] = "igSetCursorPosY" defs["igSetCursorPosY"][1]["defaults"] = {} defs["igSetCursorPosY"][1]["funcname"] = "SetCursorPosY" -defs["igSetCursorPosY"][1]["location"] = "imgui" +defs["igSetCursorPosY"][1]["location"] = "imgui:396" defs["igSetCursorPosY"][1]["namespace"] = "ImGui" defs["igSetCursorPosY"][1]["ov_cimguiname"] = "igSetCursorPosY" defs["igSetCursorPosY"][1]["ret"] = "void" @@ -19496,7 +19514,7 @@ defs["igSetCursorScreenPos"][1]["call_args"] = "(pos)" defs["igSetCursorScreenPos"][1]["cimguiname"] = "igSetCursorScreenPos" defs["igSetCursorScreenPos"][1]["defaults"] = {} defs["igSetCursorScreenPos"][1]["funcname"] = "SetCursorScreenPos" -defs["igSetCursorScreenPos"][1]["location"] = "imgui" +defs["igSetCursorScreenPos"][1]["location"] = "imgui:399" defs["igSetCursorScreenPos"][1]["namespace"] = "ImGui" defs["igSetCursorScreenPos"][1]["ov_cimguiname"] = "igSetCursorScreenPos" defs["igSetCursorScreenPos"][1]["ret"] = "void" @@ -19525,7 +19543,7 @@ defs["igSetDragDropPayload"][1]["cimguiname"] = "igSetDragDropPayload" defs["igSetDragDropPayload"][1]["defaults"] = {} defs["igSetDragDropPayload"][1]["defaults"]["cond"] = "0" defs["igSetDragDropPayload"][1]["funcname"] = "SetDragDropPayload" -defs["igSetDragDropPayload"][1]["location"] = "imgui" +defs["igSetDragDropPayload"][1]["location"] = "imgui:673" defs["igSetDragDropPayload"][1]["namespace"] = "ImGui" defs["igSetDragDropPayload"][1]["ov_cimguiname"] = "igSetDragDropPayload" defs["igSetDragDropPayload"][1]["ret"] = "bool" @@ -19547,7 +19565,7 @@ defs["igSetFocusID"][1]["call_args"] = "(id,window)" defs["igSetFocusID"][1]["cimguiname"] = "igSetFocusID" defs["igSetFocusID"][1]["defaults"] = {} defs["igSetFocusID"][1]["funcname"] = "SetFocusID" -defs["igSetFocusID"][1]["location"] = "internal" +defs["igSetFocusID"][1]["location"] = "imgui_internal:1834" defs["igSetFocusID"][1]["namespace"] = "ImGui" defs["igSetFocusID"][1]["ov_cimguiname"] = "igSetFocusID" defs["igSetFocusID"][1]["ret"] = "void" @@ -19566,7 +19584,7 @@ defs["igSetHoveredID"][1]["call_args"] = "(id)" defs["igSetHoveredID"][1]["cimguiname"] = "igSetHoveredID" defs["igSetHoveredID"][1]["defaults"] = {} defs["igSetHoveredID"][1]["funcname"] = "SetHoveredID" -defs["igSetHoveredID"][1]["location"] = "internal" +defs["igSetHoveredID"][1]["location"] = "imgui_internal:1837" defs["igSetHoveredID"][1]["namespace"] = "ImGui" defs["igSetHoveredID"][1]["ov_cimguiname"] = "igSetHoveredID" defs["igSetHoveredID"][1]["ret"] = "void" @@ -19582,7 +19600,7 @@ defs["igSetItemAllowOverlap"][1]["call_args"] = "()" defs["igSetItemAllowOverlap"][1]["cimguiname"] = "igSetItemAllowOverlap" defs["igSetItemAllowOverlap"][1]["defaults"] = {} defs["igSetItemAllowOverlap"][1]["funcname"] = "SetItemAllowOverlap" -defs["igSetItemAllowOverlap"][1]["location"] = "imgui" +defs["igSetItemAllowOverlap"][1]["location"] = "imgui:708" defs["igSetItemAllowOverlap"][1]["namespace"] = "ImGui" defs["igSetItemAllowOverlap"][1]["ov_cimguiname"] = "igSetItemAllowOverlap" defs["igSetItemAllowOverlap"][1]["ret"] = "void" @@ -19598,7 +19616,7 @@ defs["igSetItemDefaultFocus"][1]["call_args"] = "()" defs["igSetItemDefaultFocus"][1]["cimguiname"] = "igSetItemDefaultFocus" defs["igSetItemDefaultFocus"][1]["defaults"] = {} defs["igSetItemDefaultFocus"][1]["funcname"] = "SetItemDefaultFocus" -defs["igSetItemDefaultFocus"][1]["location"] = "imgui" +defs["igSetItemDefaultFocus"][1]["location"] = "imgui:686" defs["igSetItemDefaultFocus"][1]["namespace"] = "ImGui" defs["igSetItemDefaultFocus"][1]["ov_cimguiname"] = "igSetItemDefaultFocus" defs["igSetItemDefaultFocus"][1]["ret"] = "void" @@ -19618,7 +19636,7 @@ defs["igSetKeyboardFocusHere"][1]["cimguiname"] = "igSetKeyboardFocusHere" defs["igSetKeyboardFocusHere"][1]["defaults"] = {} defs["igSetKeyboardFocusHere"][1]["defaults"]["offset"] = "0" defs["igSetKeyboardFocusHere"][1]["funcname"] = "SetKeyboardFocusHere" -defs["igSetKeyboardFocusHere"][1]["location"] = "imgui" +defs["igSetKeyboardFocusHere"][1]["location"] = "imgui:687" defs["igSetKeyboardFocusHere"][1]["namespace"] = "ImGui" defs["igSetKeyboardFocusHere"][1]["ov_cimguiname"] = "igSetKeyboardFocusHere" defs["igSetKeyboardFocusHere"][1]["ret"] = "void" @@ -19646,7 +19664,7 @@ defs["igSetLastItemData"][1]["call_args"] = "(window,item_id,status_flags,item_r defs["igSetLastItemData"][1]["cimguiname"] = "igSetLastItemData" defs["igSetLastItemData"][1]["defaults"] = {} defs["igSetLastItemData"][1]["funcname"] = "SetLastItemData" -defs["igSetLastItemData"][1]["location"] = "internal" +defs["igSetLastItemData"][1]["location"] = "imgui_internal:1848" defs["igSetLastItemData"][1]["namespace"] = "ImGui" defs["igSetLastItemData"][1]["ov_cimguiname"] = "igSetLastItemData" defs["igSetLastItemData"][1]["ret"] = "void" @@ -19665,7 +19683,7 @@ defs["igSetMouseCursor"][1]["call_args"] = "(cursor_type)" defs["igSetMouseCursor"][1]["cimguiname"] = "igSetMouseCursor" defs["igSetMouseCursor"][1]["defaults"] = {} defs["igSetMouseCursor"][1]["funcname"] = "SetMouseCursor" -defs["igSetMouseCursor"][1]["location"] = "imgui" +defs["igSetMouseCursor"][1]["location"] = "imgui:761" defs["igSetMouseCursor"][1]["namespace"] = "ImGui" defs["igSetMouseCursor"][1]["ov_cimguiname"] = "igSetMouseCursor" defs["igSetMouseCursor"][1]["ret"] = "void" @@ -19690,7 +19708,7 @@ defs["igSetNavID"][1]["call_args"] = "(id,nav_layer,focus_scope_id)" defs["igSetNavID"][1]["cimguiname"] = "igSetNavID" defs["igSetNavID"][1]["defaults"] = {} defs["igSetNavID"][1]["funcname"] = "SetNavID" -defs["igSetNavID"][1]["location"] = "internal" +defs["igSetNavID"][1]["location"] = "imgui_internal:1886" defs["igSetNavID"][1]["namespace"] = "ImGui" defs["igSetNavID"][1]["ov_cimguiname"] = "igSetNavID" defs["igSetNavID"][1]["ret"] = "void" @@ -19718,7 +19736,7 @@ defs["igSetNavIDWithRectRel"][1]["call_args"] = "(id,nav_layer,focus_scope_id,re defs["igSetNavIDWithRectRel"][1]["cimguiname"] = "igSetNavIDWithRectRel" defs["igSetNavIDWithRectRel"][1]["defaults"] = {} defs["igSetNavIDWithRectRel"][1]["funcname"] = "SetNavIDWithRectRel" -defs["igSetNavIDWithRectRel"][1]["location"] = "internal" +defs["igSetNavIDWithRectRel"][1]["location"] = "imgui_internal:1887" defs["igSetNavIDWithRectRel"][1]["namespace"] = "ImGui" defs["igSetNavIDWithRectRel"][1]["ov_cimguiname"] = "igSetNavIDWithRectRel" defs["igSetNavIDWithRectRel"][1]["ret"] = "void" @@ -19741,7 +19759,7 @@ defs["igSetNextItemOpen"][1]["cimguiname"] = "igSetNextItemOpen" defs["igSetNextItemOpen"][1]["defaults"] = {} defs["igSetNextItemOpen"][1]["defaults"]["cond"] = "0" defs["igSetNextItemOpen"][1]["funcname"] = "SetNextItemOpen" -defs["igSetNextItemOpen"][1]["location"] = "imgui" +defs["igSetNextItemOpen"][1]["location"] = "imgui:553" defs["igSetNextItemOpen"][1]["namespace"] = "ImGui" defs["igSetNextItemOpen"][1]["ov_cimguiname"] = "igSetNextItemOpen" defs["igSetNextItemOpen"][1]["ret"] = "void" @@ -19760,7 +19778,7 @@ defs["igSetNextItemWidth"][1]["call_args"] = "(item_width)" defs["igSetNextItemWidth"][1]["cimguiname"] = "igSetNextItemWidth" defs["igSetNextItemWidth"][1]["defaults"] = {} defs["igSetNextItemWidth"][1]["funcname"] = "SetNextItemWidth" -defs["igSetNextItemWidth"][1]["location"] = "imgui" +defs["igSetNextItemWidth"][1]["location"] = "imgui:366" defs["igSetNextItemWidth"][1]["namespace"] = "ImGui" defs["igSetNextItemWidth"][1]["ov_cimguiname"] = "igSetNextItemWidth" defs["igSetNextItemWidth"][1]["ret"] = "void" @@ -19779,7 +19797,7 @@ defs["igSetNextWindowBgAlpha"][1]["call_args"] = "(alpha)" defs["igSetNextWindowBgAlpha"][1]["cimguiname"] = "igSetNextWindowBgAlpha" defs["igSetNextWindowBgAlpha"][1]["defaults"] = {} defs["igSetNextWindowBgAlpha"][1]["funcname"] = "SetNextWindowBgAlpha" -defs["igSetNextWindowBgAlpha"][1]["location"] = "imgui" +defs["igSetNextWindowBgAlpha"][1]["location"] = "imgui:315" defs["igSetNextWindowBgAlpha"][1]["namespace"] = "ImGui" defs["igSetNextWindowBgAlpha"][1]["ov_cimguiname"] = "igSetNextWindowBgAlpha" defs["igSetNextWindowBgAlpha"][1]["ret"] = "void" @@ -19802,7 +19820,7 @@ defs["igSetNextWindowCollapsed"][1]["cimguiname"] = "igSetNextWindowCollapsed" defs["igSetNextWindowCollapsed"][1]["defaults"] = {} defs["igSetNextWindowCollapsed"][1]["defaults"]["cond"] = "0" defs["igSetNextWindowCollapsed"][1]["funcname"] = "SetNextWindowCollapsed" -defs["igSetNextWindowCollapsed"][1]["location"] = "imgui" +defs["igSetNextWindowCollapsed"][1]["location"] = "imgui:313" defs["igSetNextWindowCollapsed"][1]["namespace"] = "ImGui" defs["igSetNextWindowCollapsed"][1]["ov_cimguiname"] = "igSetNextWindowCollapsed" defs["igSetNextWindowCollapsed"][1]["ret"] = "void" @@ -19821,7 +19839,7 @@ defs["igSetNextWindowContentSize"][1]["call_args"] = "(size)" defs["igSetNextWindowContentSize"][1]["cimguiname"] = "igSetNextWindowContentSize" defs["igSetNextWindowContentSize"][1]["defaults"] = {} defs["igSetNextWindowContentSize"][1]["funcname"] = "SetNextWindowContentSize" -defs["igSetNextWindowContentSize"][1]["location"] = "imgui" +defs["igSetNextWindowContentSize"][1]["location"] = "imgui:312" defs["igSetNextWindowContentSize"][1]["namespace"] = "ImGui" defs["igSetNextWindowContentSize"][1]["ov_cimguiname"] = "igSetNextWindowContentSize" defs["igSetNextWindowContentSize"][1]["ret"] = "void" @@ -19837,7 +19855,7 @@ defs["igSetNextWindowFocus"][1]["call_args"] = "()" defs["igSetNextWindowFocus"][1]["cimguiname"] = "igSetNextWindowFocus" defs["igSetNextWindowFocus"][1]["defaults"] = {} defs["igSetNextWindowFocus"][1]["funcname"] = "SetNextWindowFocus" -defs["igSetNextWindowFocus"][1]["location"] = "imgui" +defs["igSetNextWindowFocus"][1]["location"] = "imgui:314" defs["igSetNextWindowFocus"][1]["namespace"] = "ImGui" defs["igSetNextWindowFocus"][1]["ov_cimguiname"] = "igSetNextWindowFocus" defs["igSetNextWindowFocus"][1]["ret"] = "void" @@ -19864,7 +19882,7 @@ defs["igSetNextWindowPos"][1]["defaults"] = {} defs["igSetNextWindowPos"][1]["defaults"]["cond"] = "0" defs["igSetNextWindowPos"][1]["defaults"]["pivot"] = "ImVec2(0,0)" defs["igSetNextWindowPos"][1]["funcname"] = "SetNextWindowPos" -defs["igSetNextWindowPos"][1]["location"] = "imgui" +defs["igSetNextWindowPos"][1]["location"] = "imgui:309" defs["igSetNextWindowPos"][1]["namespace"] = "ImGui" defs["igSetNextWindowPos"][1]["ov_cimguiname"] = "igSetNextWindowPos" defs["igSetNextWindowPos"][1]["ret"] = "void" @@ -19883,7 +19901,7 @@ defs["igSetNextWindowScroll"][1]["call_args"] = "(scroll)" defs["igSetNextWindowScroll"][1]["cimguiname"] = "igSetNextWindowScroll" defs["igSetNextWindowScroll"][1]["defaults"] = {} defs["igSetNextWindowScroll"][1]["funcname"] = "SetNextWindowScroll" -defs["igSetNextWindowScroll"][1]["location"] = "internal" +defs["igSetNextWindowScroll"][1]["location"] = "imgui_internal:1821" defs["igSetNextWindowScroll"][1]["namespace"] = "ImGui" defs["igSetNextWindowScroll"][1]["ov_cimguiname"] = "igSetNextWindowScroll" defs["igSetNextWindowScroll"][1]["ret"] = "void" @@ -19906,7 +19924,7 @@ defs["igSetNextWindowSize"][1]["cimguiname"] = "igSetNextWindowSize" defs["igSetNextWindowSize"][1]["defaults"] = {} defs["igSetNextWindowSize"][1]["defaults"]["cond"] = "0" defs["igSetNextWindowSize"][1]["funcname"] = "SetNextWindowSize" -defs["igSetNextWindowSize"][1]["location"] = "imgui" +defs["igSetNextWindowSize"][1]["location"] = "imgui:310" defs["igSetNextWindowSize"][1]["namespace"] = "ImGui" defs["igSetNextWindowSize"][1]["ov_cimguiname"] = "igSetNextWindowSize" defs["igSetNextWindowSize"][1]["ret"] = "void" @@ -19933,10 +19951,10 @@ defs["igSetNextWindowSizeConstraints"][1]["argsoriginal"] = "(const ImVec2& size defs["igSetNextWindowSizeConstraints"][1]["call_args"] = "(size_min,size_max,custom_callback,custom_callback_data)" defs["igSetNextWindowSizeConstraints"][1]["cimguiname"] = "igSetNextWindowSizeConstraints" defs["igSetNextWindowSizeConstraints"][1]["defaults"] = {} -defs["igSetNextWindowSizeConstraints"][1]["defaults"]["custom_callback"] = "((void*)0)" -defs["igSetNextWindowSizeConstraints"][1]["defaults"]["custom_callback_data"] = "((void*)0)" +defs["igSetNextWindowSizeConstraints"][1]["defaults"]["custom_callback"] = "NULL" +defs["igSetNextWindowSizeConstraints"][1]["defaults"]["custom_callback_data"] = "NULL" defs["igSetNextWindowSizeConstraints"][1]["funcname"] = "SetNextWindowSizeConstraints" -defs["igSetNextWindowSizeConstraints"][1]["location"] = "imgui" +defs["igSetNextWindowSizeConstraints"][1]["location"] = "imgui:311" defs["igSetNextWindowSizeConstraints"][1]["namespace"] = "ImGui" defs["igSetNextWindowSizeConstraints"][1]["ov_cimguiname"] = "igSetNextWindowSizeConstraints" defs["igSetNextWindowSizeConstraints"][1]["ret"] = "void" @@ -19959,7 +19977,7 @@ defs["igSetScrollFromPosX"][1]["cimguiname"] = "igSetScrollFromPosX" defs["igSetScrollFromPosX"][1]["defaults"] = {} defs["igSetScrollFromPosX"][1]["defaults"]["center_x_ratio"] = "0.5f" defs["igSetScrollFromPosX"][1]["funcname"] = "SetScrollFromPosX" -defs["igSetScrollFromPosX"][1]["location"] = "imgui" +defs["igSetScrollFromPosX"][1]["location"] = "imgui:343" defs["igSetScrollFromPosX"][1]["namespace"] = "ImGui" defs["igSetScrollFromPosX"][1]["ov_cimguiname"] = "igSetScrollFromPosXFloat" defs["igSetScrollFromPosX"][1]["ret"] = "void" @@ -19983,7 +20001,7 @@ defs["igSetScrollFromPosX"][2]["cimguiname"] = "igSetScrollFromPosX" defs["igSetScrollFromPosX"][2]["defaults"] = {} defs["igSetScrollFromPosX"][2]["defaults"]["center_x_ratio"] = "0.5f" defs["igSetScrollFromPosX"][2]["funcname"] = "SetScrollFromPosX" -defs["igSetScrollFromPosX"][2]["location"] = "internal" +defs["igSetScrollFromPosX"][2]["location"] = "imgui_internal:1824" defs["igSetScrollFromPosX"][2]["namespace"] = "ImGui" defs["igSetScrollFromPosX"][2]["ov_cimguiname"] = "igSetScrollFromPosXWindowPtr" defs["igSetScrollFromPosX"][2]["ret"] = "void" @@ -20007,7 +20025,7 @@ defs["igSetScrollFromPosY"][1]["cimguiname"] = "igSetScrollFromPosY" defs["igSetScrollFromPosY"][1]["defaults"] = {} defs["igSetScrollFromPosY"][1]["defaults"]["center_y_ratio"] = "0.5f" defs["igSetScrollFromPosY"][1]["funcname"] = "SetScrollFromPosY" -defs["igSetScrollFromPosY"][1]["location"] = "imgui" +defs["igSetScrollFromPosY"][1]["location"] = "imgui:344" defs["igSetScrollFromPosY"][1]["namespace"] = "ImGui" defs["igSetScrollFromPosY"][1]["ov_cimguiname"] = "igSetScrollFromPosYFloat" defs["igSetScrollFromPosY"][1]["ret"] = "void" @@ -20031,7 +20049,7 @@ defs["igSetScrollFromPosY"][2]["cimguiname"] = "igSetScrollFromPosY" defs["igSetScrollFromPosY"][2]["defaults"] = {} defs["igSetScrollFromPosY"][2]["defaults"]["center_y_ratio"] = "0.5f" defs["igSetScrollFromPosY"][2]["funcname"] = "SetScrollFromPosY" -defs["igSetScrollFromPosY"][2]["location"] = "internal" +defs["igSetScrollFromPosY"][2]["location"] = "imgui_internal:1825" defs["igSetScrollFromPosY"][2]["namespace"] = "ImGui" defs["igSetScrollFromPosY"][2]["ov_cimguiname"] = "igSetScrollFromPosYWindowPtr" defs["igSetScrollFromPosY"][2]["ret"] = "void" @@ -20052,7 +20070,7 @@ defs["igSetScrollHereX"][1]["cimguiname"] = "igSetScrollHereX" defs["igSetScrollHereX"][1]["defaults"] = {} defs["igSetScrollHereX"][1]["defaults"]["center_x_ratio"] = "0.5f" defs["igSetScrollHereX"][1]["funcname"] = "SetScrollHereX" -defs["igSetScrollHereX"][1]["location"] = "imgui" +defs["igSetScrollHereX"][1]["location"] = "imgui:341" defs["igSetScrollHereX"][1]["namespace"] = "ImGui" defs["igSetScrollHereX"][1]["ov_cimguiname"] = "igSetScrollHereX" defs["igSetScrollHereX"][1]["ret"] = "void" @@ -20072,7 +20090,7 @@ defs["igSetScrollHereY"][1]["cimguiname"] = "igSetScrollHereY" defs["igSetScrollHereY"][1]["defaults"] = {} defs["igSetScrollHereY"][1]["defaults"]["center_y_ratio"] = "0.5f" defs["igSetScrollHereY"][1]["funcname"] = "SetScrollHereY" -defs["igSetScrollHereY"][1]["location"] = "imgui" +defs["igSetScrollHereY"][1]["location"] = "imgui:342" defs["igSetScrollHereY"][1]["namespace"] = "ImGui" defs["igSetScrollHereY"][1]["ov_cimguiname"] = "igSetScrollHereY" defs["igSetScrollHereY"][1]["ret"] = "void" @@ -20091,7 +20109,7 @@ defs["igSetScrollX"][1]["call_args"] = "(scroll_x)" defs["igSetScrollX"][1]["cimguiname"] = "igSetScrollX" defs["igSetScrollX"][1]["defaults"] = {} defs["igSetScrollX"][1]["funcname"] = "SetScrollX" -defs["igSetScrollX"][1]["location"] = "imgui" +defs["igSetScrollX"][1]["location"] = "imgui:339" defs["igSetScrollX"][1]["namespace"] = "ImGui" defs["igSetScrollX"][1]["ov_cimguiname"] = "igSetScrollXFloat" defs["igSetScrollX"][1]["ret"] = "void" @@ -20111,7 +20129,7 @@ defs["igSetScrollX"][2]["call_args"] = "(window,new_scroll_x)" defs["igSetScrollX"][2]["cimguiname"] = "igSetScrollX" defs["igSetScrollX"][2]["defaults"] = {} defs["igSetScrollX"][2]["funcname"] = "SetScrollX" -defs["igSetScrollX"][2]["location"] = "internal" +defs["igSetScrollX"][2]["location"] = "imgui_internal:1822" defs["igSetScrollX"][2]["namespace"] = "ImGui" defs["igSetScrollX"][2]["ov_cimguiname"] = "igSetScrollXWindowPtr" defs["igSetScrollX"][2]["ret"] = "void" @@ -20131,7 +20149,7 @@ defs["igSetScrollY"][1]["call_args"] = "(scroll_y)" defs["igSetScrollY"][1]["cimguiname"] = "igSetScrollY" defs["igSetScrollY"][1]["defaults"] = {} defs["igSetScrollY"][1]["funcname"] = "SetScrollY" -defs["igSetScrollY"][1]["location"] = "imgui" +defs["igSetScrollY"][1]["location"] = "imgui:340" defs["igSetScrollY"][1]["namespace"] = "ImGui" defs["igSetScrollY"][1]["ov_cimguiname"] = "igSetScrollYFloat" defs["igSetScrollY"][1]["ret"] = "void" @@ -20151,7 +20169,7 @@ defs["igSetScrollY"][2]["call_args"] = "(window,new_scroll_y)" defs["igSetScrollY"][2]["cimguiname"] = "igSetScrollY" defs["igSetScrollY"][2]["defaults"] = {} defs["igSetScrollY"][2]["funcname"] = "SetScrollY" -defs["igSetScrollY"][2]["location"] = "internal" +defs["igSetScrollY"][2]["location"] = "imgui_internal:1823" defs["igSetScrollY"][2]["namespace"] = "ImGui" defs["igSetScrollY"][2]["ov_cimguiname"] = "igSetScrollYWindowPtr" defs["igSetScrollY"][2]["ret"] = "void" @@ -20171,7 +20189,7 @@ defs["igSetStateStorage"][1]["call_args"] = "(storage)" defs["igSetStateStorage"][1]["cimguiname"] = "igSetStateStorage" defs["igSetStateStorage"][1]["defaults"] = {} defs["igSetStateStorage"][1]["funcname"] = "SetStateStorage" -defs["igSetStateStorage"][1]["location"] = "imgui" +defs["igSetStateStorage"][1]["location"] = "imgui:719" defs["igSetStateStorage"][1]["namespace"] = "ImGui" defs["igSetStateStorage"][1]["ov_cimguiname"] = "igSetStateStorage" defs["igSetStateStorage"][1]["ret"] = "void" @@ -20190,7 +20208,7 @@ defs["igSetTabItemClosed"][1]["call_args"] = "(tab_or_docked_window_label)" defs["igSetTabItemClosed"][1]["cimguiname"] = "igSetTabItemClosed" defs["igSetTabItemClosed"][1]["defaults"] = {} defs["igSetTabItemClosed"][1]["funcname"] = "SetTabItemClosed" -defs["igSetTabItemClosed"][1]["location"] = "imgui" +defs["igSetTabItemClosed"][1]["location"] = "imgui:658" defs["igSetTabItemClosed"][1]["namespace"] = "ImGui" defs["igSetTabItemClosed"][1]["ov_cimguiname"] = "igSetTabItemClosed" defs["igSetTabItemClosed"][1]["ret"] = "void" @@ -20213,7 +20231,7 @@ defs["igSetTooltip"][1]["cimguiname"] = "igSetTooltip" defs["igSetTooltip"][1]["defaults"] = {} defs["igSetTooltip"][1]["funcname"] = "SetTooltip" defs["igSetTooltip"][1]["isvararg"] = "...)" -defs["igSetTooltip"][1]["location"] = "imgui" +defs["igSetTooltip"][1]["location"] = "imgui:599" defs["igSetTooltip"][1]["namespace"] = "ImGui" defs["igSetTooltip"][1]["ov_cimguiname"] = "igSetTooltip" defs["igSetTooltip"][1]["ret"] = "void" @@ -20235,7 +20253,7 @@ defs["igSetTooltipV"][1]["call_args"] = "(fmt,args)" defs["igSetTooltipV"][1]["cimguiname"] = "igSetTooltipV" defs["igSetTooltipV"][1]["defaults"] = {} defs["igSetTooltipV"][1]["funcname"] = "SetTooltipV" -defs["igSetTooltipV"][1]["location"] = "imgui" +defs["igSetTooltipV"][1]["location"] = "imgui:600" defs["igSetTooltipV"][1]["namespace"] = "ImGui" defs["igSetTooltipV"][1]["ov_cimguiname"] = "igSetTooltipV" defs["igSetTooltipV"][1]["ret"] = "void" @@ -20257,7 +20275,7 @@ defs["igSetWindowClipRectBeforeSetChannel"][1]["call_args"] = "(window,clip_rect defs["igSetWindowClipRectBeforeSetChannel"][1]["cimguiname"] = "igSetWindowClipRectBeforeSetChannel" defs["igSetWindowClipRectBeforeSetChannel"][1]["defaults"] = {} defs["igSetWindowClipRectBeforeSetChannel"][1]["funcname"] = "SetWindowClipRectBeforeSetChannel" -defs["igSetWindowClipRectBeforeSetChannel"][1]["location"] = "internal" +defs["igSetWindowClipRectBeforeSetChannel"][1]["location"] = "imgui_internal:1913" defs["igSetWindowClipRectBeforeSetChannel"][1]["namespace"] = "ImGui" defs["igSetWindowClipRectBeforeSetChannel"][1]["ov_cimguiname"] = "igSetWindowClipRectBeforeSetChannel" defs["igSetWindowClipRectBeforeSetChannel"][1]["ret"] = "void" @@ -20280,7 +20298,7 @@ defs["igSetWindowCollapsed"][1]["cimguiname"] = "igSetWindowCollapsed" defs["igSetWindowCollapsed"][1]["defaults"] = {} defs["igSetWindowCollapsed"][1]["defaults"]["cond"] = "0" defs["igSetWindowCollapsed"][1]["funcname"] = "SetWindowCollapsed" -defs["igSetWindowCollapsed"][1]["location"] = "imgui" +defs["igSetWindowCollapsed"][1]["location"] = "imgui:318" defs["igSetWindowCollapsed"][1]["namespace"] = "ImGui" defs["igSetWindowCollapsed"][1]["ov_cimguiname"] = "igSetWindowCollapsedBool" defs["igSetWindowCollapsed"][1]["ret"] = "void" @@ -20304,7 +20322,7 @@ defs["igSetWindowCollapsed"][2]["cimguiname"] = "igSetWindowCollapsed" defs["igSetWindowCollapsed"][2]["defaults"] = {} defs["igSetWindowCollapsed"][2]["defaults"]["cond"] = "0" defs["igSetWindowCollapsed"][2]["funcname"] = "SetWindowCollapsed" -defs["igSetWindowCollapsed"][2]["location"] = "imgui" +defs["igSetWindowCollapsed"][2]["location"] = "imgui:323" defs["igSetWindowCollapsed"][2]["namespace"] = "ImGui" defs["igSetWindowCollapsed"][2]["ov_cimguiname"] = "igSetWindowCollapsedStr" defs["igSetWindowCollapsed"][2]["ret"] = "void" @@ -20328,7 +20346,7 @@ defs["igSetWindowCollapsed"][3]["cimguiname"] = "igSetWindowCollapsed" defs["igSetWindowCollapsed"][3]["defaults"] = {} defs["igSetWindowCollapsed"][3]["defaults"]["cond"] = "0" defs["igSetWindowCollapsed"][3]["funcname"] = "SetWindowCollapsed" -defs["igSetWindowCollapsed"][3]["location"] = "internal" +defs["igSetWindowCollapsed"][3]["location"] = "imgui_internal:1786" defs["igSetWindowCollapsed"][3]["namespace"] = "ImGui" defs["igSetWindowCollapsed"][3]["ov_cimguiname"] = "igSetWindowCollapsedWindowPtr" defs["igSetWindowCollapsed"][3]["ret"] = "void" @@ -20346,7 +20364,7 @@ defs["igSetWindowFocus"][1]["call_args"] = "()" defs["igSetWindowFocus"][1]["cimguiname"] = "igSetWindowFocus" defs["igSetWindowFocus"][1]["defaults"] = {} defs["igSetWindowFocus"][1]["funcname"] = "SetWindowFocus" -defs["igSetWindowFocus"][1]["location"] = "imgui" +defs["igSetWindowFocus"][1]["location"] = "imgui:319" defs["igSetWindowFocus"][1]["namespace"] = "ImGui" defs["igSetWindowFocus"][1]["ov_cimguiname"] = "igSetWindowFocusNil" defs["igSetWindowFocus"][1]["ret"] = "void" @@ -20363,7 +20381,7 @@ defs["igSetWindowFocus"][2]["call_args"] = "(name)" defs["igSetWindowFocus"][2]["cimguiname"] = "igSetWindowFocus" defs["igSetWindowFocus"][2]["defaults"] = {} defs["igSetWindowFocus"][2]["funcname"] = "SetWindowFocus" -defs["igSetWindowFocus"][2]["location"] = "imgui" +defs["igSetWindowFocus"][2]["location"] = "imgui:324" defs["igSetWindowFocus"][2]["namespace"] = "ImGui" defs["igSetWindowFocus"][2]["ov_cimguiname"] = "igSetWindowFocusStr" defs["igSetWindowFocus"][2]["ret"] = "void" @@ -20383,7 +20401,7 @@ defs["igSetWindowFontScale"][1]["call_args"] = "(scale)" defs["igSetWindowFontScale"][1]["cimguiname"] = "igSetWindowFontScale" defs["igSetWindowFontScale"][1]["defaults"] = {} defs["igSetWindowFontScale"][1]["funcname"] = "SetWindowFontScale" -defs["igSetWindowFontScale"][1]["location"] = "imgui" +defs["igSetWindowFontScale"][1]["location"] = "imgui:320" defs["igSetWindowFontScale"][1]["namespace"] = "ImGui" defs["igSetWindowFontScale"][1]["ov_cimguiname"] = "igSetWindowFontScale" defs["igSetWindowFontScale"][1]["ret"] = "void" @@ -20408,7 +20426,7 @@ defs["igSetWindowHitTestHole"][1]["call_args"] = "(window,pos,size)" defs["igSetWindowHitTestHole"][1]["cimguiname"] = "igSetWindowHitTestHole" defs["igSetWindowHitTestHole"][1]["defaults"] = {} defs["igSetWindowHitTestHole"][1]["funcname"] = "SetWindowHitTestHole" -defs["igSetWindowHitTestHole"][1]["location"] = "internal" +defs["igSetWindowHitTestHole"][1]["location"] = "imgui_internal:1787" defs["igSetWindowHitTestHole"][1]["namespace"] = "ImGui" defs["igSetWindowHitTestHole"][1]["ov_cimguiname"] = "igSetWindowHitTestHole" defs["igSetWindowHitTestHole"][1]["ret"] = "void" @@ -20431,7 +20449,7 @@ defs["igSetWindowPos"][1]["cimguiname"] = "igSetWindowPos" defs["igSetWindowPos"][1]["defaults"] = {} defs["igSetWindowPos"][1]["defaults"]["cond"] = "0" defs["igSetWindowPos"][1]["funcname"] = "SetWindowPos" -defs["igSetWindowPos"][1]["location"] = "imgui" +defs["igSetWindowPos"][1]["location"] = "imgui:316" defs["igSetWindowPos"][1]["namespace"] = "ImGui" defs["igSetWindowPos"][1]["ov_cimguiname"] = "igSetWindowPosVec2" defs["igSetWindowPos"][1]["ret"] = "void" @@ -20455,7 +20473,7 @@ defs["igSetWindowPos"][2]["cimguiname"] = "igSetWindowPos" defs["igSetWindowPos"][2]["defaults"] = {} defs["igSetWindowPos"][2]["defaults"]["cond"] = "0" defs["igSetWindowPos"][2]["funcname"] = "SetWindowPos" -defs["igSetWindowPos"][2]["location"] = "imgui" +defs["igSetWindowPos"][2]["location"] = "imgui:321" defs["igSetWindowPos"][2]["namespace"] = "ImGui" defs["igSetWindowPos"][2]["ov_cimguiname"] = "igSetWindowPosStr" defs["igSetWindowPos"][2]["ret"] = "void" @@ -20479,7 +20497,7 @@ defs["igSetWindowPos"][3]["cimguiname"] = "igSetWindowPos" defs["igSetWindowPos"][3]["defaults"] = {} defs["igSetWindowPos"][3]["defaults"]["cond"] = "0" defs["igSetWindowPos"][3]["funcname"] = "SetWindowPos" -defs["igSetWindowPos"][3]["location"] = "internal" +defs["igSetWindowPos"][3]["location"] = "imgui_internal:1784" defs["igSetWindowPos"][3]["namespace"] = "ImGui" defs["igSetWindowPos"][3]["ov_cimguiname"] = "igSetWindowPosWindowPtr" defs["igSetWindowPos"][3]["ret"] = "void" @@ -20504,7 +20522,7 @@ defs["igSetWindowSize"][1]["cimguiname"] = "igSetWindowSize" defs["igSetWindowSize"][1]["defaults"] = {} defs["igSetWindowSize"][1]["defaults"]["cond"] = "0" defs["igSetWindowSize"][1]["funcname"] = "SetWindowSize" -defs["igSetWindowSize"][1]["location"] = "imgui" +defs["igSetWindowSize"][1]["location"] = "imgui:317" defs["igSetWindowSize"][1]["namespace"] = "ImGui" defs["igSetWindowSize"][1]["ov_cimguiname"] = "igSetWindowSizeVec2" defs["igSetWindowSize"][1]["ret"] = "void" @@ -20528,7 +20546,7 @@ defs["igSetWindowSize"][2]["cimguiname"] = "igSetWindowSize" defs["igSetWindowSize"][2]["defaults"] = {} defs["igSetWindowSize"][2]["defaults"]["cond"] = "0" defs["igSetWindowSize"][2]["funcname"] = "SetWindowSize" -defs["igSetWindowSize"][2]["location"] = "imgui" +defs["igSetWindowSize"][2]["location"] = "imgui:322" defs["igSetWindowSize"][2]["namespace"] = "ImGui" defs["igSetWindowSize"][2]["ov_cimguiname"] = "igSetWindowSizeStr" defs["igSetWindowSize"][2]["ret"] = "void" @@ -20552,7 +20570,7 @@ defs["igSetWindowSize"][3]["cimguiname"] = "igSetWindowSize" defs["igSetWindowSize"][3]["defaults"] = {} defs["igSetWindowSize"][3]["defaults"]["cond"] = "0" defs["igSetWindowSize"][3]["funcname"] = "SetWindowSize" -defs["igSetWindowSize"][3]["location"] = "internal" +defs["igSetWindowSize"][3]["location"] = "imgui_internal:1785" defs["igSetWindowSize"][3]["namespace"] = "ImGui" defs["igSetWindowSize"][3]["ov_cimguiname"] = "igSetWindowSizeWindowPtr" defs["igSetWindowSize"][3]["ret"] = "void" @@ -20591,7 +20609,7 @@ defs["igShadeVertsLinearColorGradientKeepAlpha"][1]["call_args"] = "(draw_list,v defs["igShadeVertsLinearColorGradientKeepAlpha"][1]["cimguiname"] = "igShadeVertsLinearColorGradientKeepAlpha" defs["igShadeVertsLinearColorGradientKeepAlpha"][1]["defaults"] = {} defs["igShadeVertsLinearColorGradientKeepAlpha"][1]["funcname"] = "ShadeVertsLinearColorGradientKeepAlpha" -defs["igShadeVertsLinearColorGradientKeepAlpha"][1]["location"] = "internal" +defs["igShadeVertsLinearColorGradientKeepAlpha"][1]["location"] = "imgui_internal:2020" defs["igShadeVertsLinearColorGradientKeepAlpha"][1]["namespace"] = "ImGui" defs["igShadeVertsLinearColorGradientKeepAlpha"][1]["ov_cimguiname"] = "igShadeVertsLinearColorGradientKeepAlpha" defs["igShadeVertsLinearColorGradientKeepAlpha"][1]["ret"] = "void" @@ -20631,7 +20649,7 @@ defs["igShadeVertsLinearUV"][1]["call_args"] = "(draw_list,vert_start_idx,vert_e defs["igShadeVertsLinearUV"][1]["cimguiname"] = "igShadeVertsLinearUV" defs["igShadeVertsLinearUV"][1]["defaults"] = {} defs["igShadeVertsLinearUV"][1]["funcname"] = "ShadeVertsLinearUV" -defs["igShadeVertsLinearUV"][1]["location"] = "internal" +defs["igShadeVertsLinearUV"][1]["location"] = "imgui_internal:2021" defs["igShadeVertsLinearUV"][1]["namespace"] = "ImGui" defs["igShadeVertsLinearUV"][1]["ov_cimguiname"] = "igShadeVertsLinearUV" defs["igShadeVertsLinearUV"][1]["ret"] = "void" @@ -20649,9 +20667,9 @@ defs["igShowAboutWindow"][1]["argsoriginal"] = "(bool* p_open=((void*)0))" defs["igShowAboutWindow"][1]["call_args"] = "(p_open)" defs["igShowAboutWindow"][1]["cimguiname"] = "igShowAboutWindow" defs["igShowAboutWindow"][1]["defaults"] = {} -defs["igShowAboutWindow"][1]["defaults"]["p_open"] = "((void*)0)" +defs["igShowAboutWindow"][1]["defaults"]["p_open"] = "NULL" defs["igShowAboutWindow"][1]["funcname"] = "ShowAboutWindow" -defs["igShowAboutWindow"][1]["location"] = "imgui" +defs["igShowAboutWindow"][1]["location"] = "imgui:259" defs["igShowAboutWindow"][1]["namespace"] = "ImGui" defs["igShowAboutWindow"][1]["ov_cimguiname"] = "igShowAboutWindow" defs["igShowAboutWindow"][1]["ret"] = "void" @@ -20669,9 +20687,9 @@ defs["igShowDemoWindow"][1]["argsoriginal"] = "(bool* p_open=((void*)0))" defs["igShowDemoWindow"][1]["call_args"] = "(p_open)" defs["igShowDemoWindow"][1]["cimguiname"] = "igShowDemoWindow" defs["igShowDemoWindow"][1]["defaults"] = {} -defs["igShowDemoWindow"][1]["defaults"]["p_open"] = "((void*)0)" +defs["igShowDemoWindow"][1]["defaults"]["p_open"] = "NULL" defs["igShowDemoWindow"][1]["funcname"] = "ShowDemoWindow" -defs["igShowDemoWindow"][1]["location"] = "imgui" +defs["igShowDemoWindow"][1]["location"] = "imgui:258" defs["igShowDemoWindow"][1]["namespace"] = "ImGui" defs["igShowDemoWindow"][1]["ov_cimguiname"] = "igShowDemoWindow" defs["igShowDemoWindow"][1]["ret"] = "void" @@ -20690,7 +20708,7 @@ defs["igShowFontSelector"][1]["call_args"] = "(label)" defs["igShowFontSelector"][1]["cimguiname"] = "igShowFontSelector" defs["igShowFontSelector"][1]["defaults"] = {} defs["igShowFontSelector"][1]["funcname"] = "ShowFontSelector" -defs["igShowFontSelector"][1]["location"] = "imgui" +defs["igShowFontSelector"][1]["location"] = "imgui:263" defs["igShowFontSelector"][1]["namespace"] = "ImGui" defs["igShowFontSelector"][1]["ov_cimguiname"] = "igShowFontSelector" defs["igShowFontSelector"][1]["ret"] = "void" @@ -20708,9 +20726,9 @@ defs["igShowMetricsWindow"][1]["argsoriginal"] = "(bool* p_open=((void*)0))" defs["igShowMetricsWindow"][1]["call_args"] = "(p_open)" defs["igShowMetricsWindow"][1]["cimguiname"] = "igShowMetricsWindow" defs["igShowMetricsWindow"][1]["defaults"] = {} -defs["igShowMetricsWindow"][1]["defaults"]["p_open"] = "((void*)0)" +defs["igShowMetricsWindow"][1]["defaults"]["p_open"] = "NULL" defs["igShowMetricsWindow"][1]["funcname"] = "ShowMetricsWindow" -defs["igShowMetricsWindow"][1]["location"] = "imgui" +defs["igShowMetricsWindow"][1]["location"] = "imgui:260" defs["igShowMetricsWindow"][1]["namespace"] = "ImGui" defs["igShowMetricsWindow"][1]["ov_cimguiname"] = "igShowMetricsWindow" defs["igShowMetricsWindow"][1]["ret"] = "void" @@ -20728,9 +20746,9 @@ defs["igShowStyleEditor"][1]["argsoriginal"] = "(ImGuiStyle* ref=((void*)0))" defs["igShowStyleEditor"][1]["call_args"] = "(ref)" defs["igShowStyleEditor"][1]["cimguiname"] = "igShowStyleEditor" defs["igShowStyleEditor"][1]["defaults"] = {} -defs["igShowStyleEditor"][1]["defaults"]["ref"] = "((void*)0)" +defs["igShowStyleEditor"][1]["defaults"]["ref"] = "NULL" defs["igShowStyleEditor"][1]["funcname"] = "ShowStyleEditor" -defs["igShowStyleEditor"][1]["location"] = "imgui" +defs["igShowStyleEditor"][1]["location"] = "imgui:261" defs["igShowStyleEditor"][1]["namespace"] = "ImGui" defs["igShowStyleEditor"][1]["ov_cimguiname"] = "igShowStyleEditor" defs["igShowStyleEditor"][1]["ret"] = "void" @@ -20749,7 +20767,7 @@ defs["igShowStyleSelector"][1]["call_args"] = "(label)" defs["igShowStyleSelector"][1]["cimguiname"] = "igShowStyleSelector" defs["igShowStyleSelector"][1]["defaults"] = {} defs["igShowStyleSelector"][1]["funcname"] = "ShowStyleSelector" -defs["igShowStyleSelector"][1]["location"] = "imgui" +defs["igShowStyleSelector"][1]["location"] = "imgui:262" defs["igShowStyleSelector"][1]["namespace"] = "ImGui" defs["igShowStyleSelector"][1]["ov_cimguiname"] = "igShowStyleSelector" defs["igShowStyleSelector"][1]["ret"] = "bool" @@ -20765,7 +20783,7 @@ defs["igShowUserGuide"][1]["call_args"] = "()" defs["igShowUserGuide"][1]["cimguiname"] = "igShowUserGuide" defs["igShowUserGuide"][1]["defaults"] = {} defs["igShowUserGuide"][1]["funcname"] = "ShowUserGuide" -defs["igShowUserGuide"][1]["location"] = "imgui" +defs["igShowUserGuide"][1]["location"] = "imgui:264" defs["igShowUserGuide"][1]["namespace"] = "ImGui" defs["igShowUserGuide"][1]["ov_cimguiname"] = "igShowUserGuide" defs["igShowUserGuide"][1]["ret"] = "void" @@ -20790,7 +20808,7 @@ defs["igShrinkWidths"][1]["call_args"] = "(items,count,width_excess)" defs["igShrinkWidths"][1]["cimguiname"] = "igShrinkWidths" defs["igShrinkWidths"][1]["defaults"] = {} defs["igShrinkWidths"][1]["funcname"] = "ShrinkWidths" -defs["igShrinkWidths"][1]["location"] = "internal" +defs["igShrinkWidths"][1]["location"] = "imgui_internal:1858" defs["igShrinkWidths"][1]["namespace"] = "ImGui" defs["igShrinkWidths"][1]["ov_cimguiname"] = "igShrinkWidths" defs["igShrinkWidths"][1]["ret"] = "void" @@ -20809,7 +20827,7 @@ defs["igShutdown"][1]["call_args"] = "(context)" defs["igShutdown"][1]["cimguiname"] = "igShutdown" defs["igShutdown"][1]["defaults"] = {} defs["igShutdown"][1]["funcname"] = "Shutdown" -defs["igShutdown"][1]["location"] = "internal" +defs["igShutdown"][1]["location"] = "imgui_internal:1803" defs["igShutdown"][1]["namespace"] = "ImGui" defs["igShutdown"][1]["ov_cimguiname"] = "igShutdown" defs["igShutdown"][1]["ret"] = "void" @@ -20847,7 +20865,7 @@ defs["igSliderAngle"][1]["defaults"]["format"] = "\"%.0f deg\"" defs["igSliderAngle"][1]["defaults"]["v_degrees_max"] = "+360.0f" defs["igSliderAngle"][1]["defaults"]["v_degrees_min"] = "-360.0f" defs["igSliderAngle"][1]["funcname"] = "SliderAngle" -defs["igSliderAngle"][1]["location"] = "imgui" +defs["igSliderAngle"][1]["location"] = "imgui:496" defs["igSliderAngle"][1]["namespace"] = "ImGui" defs["igSliderAngle"][1]["ov_cimguiname"] = "igSliderAngle" defs["igSliderAngle"][1]["ret"] = "bool" @@ -20890,7 +20908,7 @@ defs["igSliderBehavior"][1]["call_args"] = "(bb,id,data_type,p_v,p_min,p_max,for defs["igSliderBehavior"][1]["cimguiname"] = "igSliderBehavior" defs["igSliderBehavior"][1]["defaults"] = {} defs["igSliderBehavior"][1]["funcname"] = "SliderBehavior" -defs["igSliderBehavior"][1]["location"] = "internal" +defs["igSliderBehavior"][1]["location"] = "imgui_internal:1982" defs["igSliderBehavior"][1]["namespace"] = "ImGui" defs["igSliderBehavior"][1]["ov_cimguiname"] = "igSliderBehavior" defs["igSliderBehavior"][1]["ret"] = "bool" @@ -20926,7 +20944,7 @@ defs["igSliderFloat"][1]["defaults"] = {} defs["igSliderFloat"][1]["defaults"]["flags"] = "0" defs["igSliderFloat"][1]["defaults"]["format"] = "\"%.3f\"" defs["igSliderFloat"][1]["funcname"] = "SliderFloat" -defs["igSliderFloat"][1]["location"] = "imgui" +defs["igSliderFloat"][1]["location"] = "imgui:492" defs["igSliderFloat"][1]["namespace"] = "ImGui" defs["igSliderFloat"][1]["ov_cimguiname"] = "igSliderFloat" defs["igSliderFloat"][1]["ret"] = "bool" @@ -20962,7 +20980,7 @@ defs["igSliderFloat2"][1]["defaults"] = {} defs["igSliderFloat2"][1]["defaults"]["flags"] = "0" defs["igSliderFloat2"][1]["defaults"]["format"] = "\"%.3f\"" defs["igSliderFloat2"][1]["funcname"] = "SliderFloat2" -defs["igSliderFloat2"][1]["location"] = "imgui" +defs["igSliderFloat2"][1]["location"] = "imgui:493" defs["igSliderFloat2"][1]["namespace"] = "ImGui" defs["igSliderFloat2"][1]["ov_cimguiname"] = "igSliderFloat2" defs["igSliderFloat2"][1]["ret"] = "bool" @@ -20998,7 +21016,7 @@ defs["igSliderFloat3"][1]["defaults"] = {} defs["igSliderFloat3"][1]["defaults"]["flags"] = "0" defs["igSliderFloat3"][1]["defaults"]["format"] = "\"%.3f\"" defs["igSliderFloat3"][1]["funcname"] = "SliderFloat3" -defs["igSliderFloat3"][1]["location"] = "imgui" +defs["igSliderFloat3"][1]["location"] = "imgui:494" defs["igSliderFloat3"][1]["namespace"] = "ImGui" defs["igSliderFloat3"][1]["ov_cimguiname"] = "igSliderFloat3" defs["igSliderFloat3"][1]["ret"] = "bool" @@ -21034,7 +21052,7 @@ defs["igSliderFloat4"][1]["defaults"] = {} defs["igSliderFloat4"][1]["defaults"]["flags"] = "0" defs["igSliderFloat4"][1]["defaults"]["format"] = "\"%.3f\"" defs["igSliderFloat4"][1]["funcname"] = "SliderFloat4" -defs["igSliderFloat4"][1]["location"] = "imgui" +defs["igSliderFloat4"][1]["location"] = "imgui:495" defs["igSliderFloat4"][1]["namespace"] = "ImGui" defs["igSliderFloat4"][1]["ov_cimguiname"] = "igSliderFloat4" defs["igSliderFloat4"][1]["ret"] = "bool" @@ -21070,7 +21088,7 @@ defs["igSliderInt"][1]["defaults"] = {} defs["igSliderInt"][1]["defaults"]["flags"] = "0" defs["igSliderInt"][1]["defaults"]["format"] = "\"%d\"" defs["igSliderInt"][1]["funcname"] = "SliderInt" -defs["igSliderInt"][1]["location"] = "imgui" +defs["igSliderInt"][1]["location"] = "imgui:497" defs["igSliderInt"][1]["namespace"] = "ImGui" defs["igSliderInt"][1]["ov_cimguiname"] = "igSliderInt" defs["igSliderInt"][1]["ret"] = "bool" @@ -21106,7 +21124,7 @@ defs["igSliderInt2"][1]["defaults"] = {} defs["igSliderInt2"][1]["defaults"]["flags"] = "0" defs["igSliderInt2"][1]["defaults"]["format"] = "\"%d\"" defs["igSliderInt2"][1]["funcname"] = "SliderInt2" -defs["igSliderInt2"][1]["location"] = "imgui" +defs["igSliderInt2"][1]["location"] = "imgui:498" defs["igSliderInt2"][1]["namespace"] = "ImGui" defs["igSliderInt2"][1]["ov_cimguiname"] = "igSliderInt2" defs["igSliderInt2"][1]["ret"] = "bool" @@ -21142,7 +21160,7 @@ defs["igSliderInt3"][1]["defaults"] = {} defs["igSliderInt3"][1]["defaults"]["flags"] = "0" defs["igSliderInt3"][1]["defaults"]["format"] = "\"%d\"" defs["igSliderInt3"][1]["funcname"] = "SliderInt3" -defs["igSliderInt3"][1]["location"] = "imgui" +defs["igSliderInt3"][1]["location"] = "imgui:499" defs["igSliderInt3"][1]["namespace"] = "ImGui" defs["igSliderInt3"][1]["ov_cimguiname"] = "igSliderInt3" defs["igSliderInt3"][1]["ret"] = "bool" @@ -21178,7 +21196,7 @@ defs["igSliderInt4"][1]["defaults"] = {} defs["igSliderInt4"][1]["defaults"]["flags"] = "0" defs["igSliderInt4"][1]["defaults"]["format"] = "\"%d\"" defs["igSliderInt4"][1]["funcname"] = "SliderInt4" -defs["igSliderInt4"][1]["location"] = "imgui" +defs["igSliderInt4"][1]["location"] = "imgui:500" defs["igSliderInt4"][1]["namespace"] = "ImGui" defs["igSliderInt4"][1]["ov_cimguiname"] = "igSliderInt4" defs["igSliderInt4"][1]["ret"] = "bool" @@ -21215,9 +21233,9 @@ defs["igSliderScalar"][1]["call_args"] = "(label,data_type,p_data,p_min,p_max,fo defs["igSliderScalar"][1]["cimguiname"] = "igSliderScalar" defs["igSliderScalar"][1]["defaults"] = {} defs["igSliderScalar"][1]["defaults"]["flags"] = "0" -defs["igSliderScalar"][1]["defaults"]["format"] = "((void*)0)" +defs["igSliderScalar"][1]["defaults"]["format"] = "NULL" defs["igSliderScalar"][1]["funcname"] = "SliderScalar" -defs["igSliderScalar"][1]["location"] = "imgui" +defs["igSliderScalar"][1]["location"] = "imgui:501" defs["igSliderScalar"][1]["namespace"] = "ImGui" defs["igSliderScalar"][1]["ov_cimguiname"] = "igSliderScalar" defs["igSliderScalar"][1]["ret"] = "bool" @@ -21257,9 +21275,9 @@ defs["igSliderScalarN"][1]["call_args"] = "(label,data_type,p_data,components,p_ defs["igSliderScalarN"][1]["cimguiname"] = "igSliderScalarN" defs["igSliderScalarN"][1]["defaults"] = {} defs["igSliderScalarN"][1]["defaults"]["flags"] = "0" -defs["igSliderScalarN"][1]["defaults"]["format"] = "((void*)0)" +defs["igSliderScalarN"][1]["defaults"]["format"] = "NULL" defs["igSliderScalarN"][1]["funcname"] = "SliderScalarN" -defs["igSliderScalarN"][1]["location"] = "imgui" +defs["igSliderScalarN"][1]["location"] = "imgui:502" defs["igSliderScalarN"][1]["namespace"] = "ImGui" defs["igSliderScalarN"][1]["ov_cimguiname"] = "igSliderScalarN" defs["igSliderScalarN"][1]["ret"] = "bool" @@ -21278,7 +21296,7 @@ defs["igSmallButton"][1]["call_args"] = "(label)" defs["igSmallButton"][1]["cimguiname"] = "igSmallButton" defs["igSmallButton"][1]["defaults"] = {} defs["igSmallButton"][1]["funcname"] = "SmallButton" -defs["igSmallButton"][1]["location"] = "imgui" +defs["igSmallButton"][1]["location"] = "imgui:441" defs["igSmallButton"][1]["namespace"] = "ImGui" defs["igSmallButton"][1]["ov_cimguiname"] = "igSmallButton" defs["igSmallButton"][1]["ret"] = "bool" @@ -21294,7 +21312,7 @@ defs["igSpacing"][1]["call_args"] = "()" defs["igSpacing"][1]["cimguiname"] = "igSpacing" defs["igSpacing"][1]["defaults"] = {} defs["igSpacing"][1]["funcname"] = "Spacing" -defs["igSpacing"][1]["location"] = "imgui" +defs["igSpacing"][1]["location"] = "imgui:385" defs["igSpacing"][1]["namespace"] = "ImGui" defs["igSpacing"][1]["ov_cimguiname"] = "igSpacing" defs["igSpacing"][1]["ret"] = "void" @@ -21339,7 +21357,7 @@ defs["igSplitterBehavior"][1]["defaults"] = {} defs["igSplitterBehavior"][1]["defaults"]["hover_extend"] = "0.0f" defs["igSplitterBehavior"][1]["defaults"]["hover_visibility_delay"] = "0.0f" defs["igSplitterBehavior"][1]["funcname"] = "SplitterBehavior" -defs["igSplitterBehavior"][1]["location"] = "internal" +defs["igSplitterBehavior"][1]["location"] = "imgui_internal:1983" defs["igSplitterBehavior"][1]["namespace"] = "ImGui" defs["igSplitterBehavior"][1]["ov_cimguiname"] = "igSplitterBehavior" defs["igSplitterBehavior"][1]["ret"] = "bool" @@ -21358,7 +21376,7 @@ defs["igStartMouseMovingWindow"][1]["call_args"] = "(window)" defs["igStartMouseMovingWindow"][1]["cimguiname"] = "igStartMouseMovingWindow" defs["igStartMouseMovingWindow"][1]["defaults"] = {} defs["igStartMouseMovingWindow"][1]["funcname"] = "StartMouseMovingWindow" -defs["igStartMouseMovingWindow"][1]["location"] = "internal" +defs["igStartMouseMovingWindow"][1]["location"] = "imgui_internal:1807" defs["igStartMouseMovingWindow"][1]["namespace"] = "ImGui" defs["igStartMouseMovingWindow"][1]["ov_cimguiname"] = "igStartMouseMovingWindow" defs["igStartMouseMovingWindow"][1]["ret"] = "void" @@ -21376,9 +21394,9 @@ defs["igStyleColorsClassic"][1]["argsoriginal"] = "(ImGuiStyle* dst=((void*)0))" defs["igStyleColorsClassic"][1]["call_args"] = "(dst)" defs["igStyleColorsClassic"][1]["cimguiname"] = "igStyleColorsClassic" defs["igStyleColorsClassic"][1]["defaults"] = {} -defs["igStyleColorsClassic"][1]["defaults"]["dst"] = "((void*)0)" +defs["igStyleColorsClassic"][1]["defaults"]["dst"] = "NULL" defs["igStyleColorsClassic"][1]["funcname"] = "StyleColorsClassic" -defs["igStyleColorsClassic"][1]["location"] = "imgui" +defs["igStyleColorsClassic"][1]["location"] = "imgui:269" defs["igStyleColorsClassic"][1]["namespace"] = "ImGui" defs["igStyleColorsClassic"][1]["ov_cimguiname"] = "igStyleColorsClassic" defs["igStyleColorsClassic"][1]["ret"] = "void" @@ -21396,9 +21414,9 @@ defs["igStyleColorsDark"][1]["argsoriginal"] = "(ImGuiStyle* dst=((void*)0))" defs["igStyleColorsDark"][1]["call_args"] = "(dst)" defs["igStyleColorsDark"][1]["cimguiname"] = "igStyleColorsDark" defs["igStyleColorsDark"][1]["defaults"] = {} -defs["igStyleColorsDark"][1]["defaults"]["dst"] = "((void*)0)" +defs["igStyleColorsDark"][1]["defaults"]["dst"] = "NULL" defs["igStyleColorsDark"][1]["funcname"] = "StyleColorsDark" -defs["igStyleColorsDark"][1]["location"] = "imgui" +defs["igStyleColorsDark"][1]["location"] = "imgui:268" defs["igStyleColorsDark"][1]["namespace"] = "ImGui" defs["igStyleColorsDark"][1]["ov_cimguiname"] = "igStyleColorsDark" defs["igStyleColorsDark"][1]["ret"] = "void" @@ -21416,9 +21434,9 @@ defs["igStyleColorsLight"][1]["argsoriginal"] = "(ImGuiStyle* dst=((void*)0))" defs["igStyleColorsLight"][1]["call_args"] = "(dst)" defs["igStyleColorsLight"][1]["cimguiname"] = "igStyleColorsLight" defs["igStyleColorsLight"][1]["defaults"] = {} -defs["igStyleColorsLight"][1]["defaults"]["dst"] = "((void*)0)" +defs["igStyleColorsLight"][1]["defaults"]["dst"] = "NULL" defs["igStyleColorsLight"][1]["funcname"] = "StyleColorsLight" -defs["igStyleColorsLight"][1]["location"] = "imgui" +defs["igStyleColorsLight"][1]["location"] = "imgui:270" defs["igStyleColorsLight"][1]["namespace"] = "ImGui" defs["igStyleColorsLight"][1]["ov_cimguiname"] = "igStyleColorsLight" defs["igStyleColorsLight"][1]["ret"] = "void" @@ -21440,7 +21458,7 @@ defs["igTabBarCloseTab"][1]["call_args"] = "(tab_bar,tab)" defs["igTabBarCloseTab"][1]["cimguiname"] = "igTabBarCloseTab" defs["igTabBarCloseTab"][1]["defaults"] = {} defs["igTabBarCloseTab"][1]["funcname"] = "TabBarCloseTab" -defs["igTabBarCloseTab"][1]["location"] = "internal" +defs["igTabBarCloseTab"][1]["location"] = "imgui_internal:1928" defs["igTabBarCloseTab"][1]["namespace"] = "ImGui" defs["igTabBarCloseTab"][1]["ov_cimguiname"] = "igTabBarCloseTab" defs["igTabBarCloseTab"][1]["ret"] = "void" @@ -21462,7 +21480,7 @@ defs["igTabBarFindTabByID"][1]["call_args"] = "(tab_bar,tab_id)" defs["igTabBarFindTabByID"][1]["cimguiname"] = "igTabBarFindTabByID" defs["igTabBarFindTabByID"][1]["defaults"] = {} defs["igTabBarFindTabByID"][1]["funcname"] = "TabBarFindTabByID" -defs["igTabBarFindTabByID"][1]["location"] = "internal" +defs["igTabBarFindTabByID"][1]["location"] = "imgui_internal:1926" defs["igTabBarFindTabByID"][1]["namespace"] = "ImGui" defs["igTabBarFindTabByID"][1]["ov_cimguiname"] = "igTabBarFindTabByID" defs["igTabBarFindTabByID"][1]["ret"] = "ImGuiTabItem*" @@ -21487,7 +21505,7 @@ defs["igTabBarQueueChangeTabOrder"][1]["call_args"] = "(tab_bar,tab,dir)" defs["igTabBarQueueChangeTabOrder"][1]["cimguiname"] = "igTabBarQueueChangeTabOrder" defs["igTabBarQueueChangeTabOrder"][1]["defaults"] = {} defs["igTabBarQueueChangeTabOrder"][1]["funcname"] = "TabBarQueueChangeTabOrder" -defs["igTabBarQueueChangeTabOrder"][1]["location"] = "internal" +defs["igTabBarQueueChangeTabOrder"][1]["location"] = "imgui_internal:1929" defs["igTabBarQueueChangeTabOrder"][1]["namespace"] = "ImGui" defs["igTabBarQueueChangeTabOrder"][1]["ov_cimguiname"] = "igTabBarQueueChangeTabOrder" defs["igTabBarQueueChangeTabOrder"][1]["ret"] = "void" @@ -21509,7 +21527,7 @@ defs["igTabBarRemoveTab"][1]["call_args"] = "(tab_bar,tab_id)" defs["igTabBarRemoveTab"][1]["cimguiname"] = "igTabBarRemoveTab" defs["igTabBarRemoveTab"][1]["defaults"] = {} defs["igTabBarRemoveTab"][1]["funcname"] = "TabBarRemoveTab" -defs["igTabBarRemoveTab"][1]["location"] = "internal" +defs["igTabBarRemoveTab"][1]["location"] = "imgui_internal:1927" defs["igTabBarRemoveTab"][1]["namespace"] = "ImGui" defs["igTabBarRemoveTab"][1]["ov_cimguiname"] = "igTabBarRemoveTab" defs["igTabBarRemoveTab"][1]["ret"] = "void" @@ -21537,7 +21555,7 @@ defs["igTabItemBackground"][1]["call_args"] = "(draw_list,bb,flags,col)" defs["igTabItemBackground"][1]["cimguiname"] = "igTabItemBackground" defs["igTabItemBackground"][1]["defaults"] = {} defs["igTabItemBackground"][1]["funcname"] = "TabItemBackground" -defs["igTabItemBackground"][1]["location"] = "internal" +defs["igTabItemBackground"][1]["location"] = "imgui_internal:1932" defs["igTabItemBackground"][1]["namespace"] = "ImGui" defs["igTabItemBackground"][1]["ov_cimguiname"] = "igTabItemBackground" defs["igTabItemBackground"][1]["ret"] = "void" @@ -21562,7 +21580,7 @@ defs["igTabItemCalcSize"][1]["call_args"] = "(label,has_close_button)" defs["igTabItemCalcSize"][1]["cimguiname"] = "igTabItemCalcSize" defs["igTabItemCalcSize"][1]["defaults"] = {} defs["igTabItemCalcSize"][1]["funcname"] = "TabItemCalcSize" -defs["igTabItemCalcSize"][1]["location"] = "internal" +defs["igTabItemCalcSize"][1]["location"] = "imgui_internal:1931" defs["igTabItemCalcSize"][1]["namespace"] = "ImGui" defs["igTabItemCalcSize"][1]["nonUDT"] = 1 defs["igTabItemCalcSize"][1]["ov_cimguiname"] = "igTabItemCalcSize" @@ -21591,7 +21609,7 @@ defs["igTabItemEx"][1]["call_args"] = "(tab_bar,label,p_open,flags)" defs["igTabItemEx"][1]["cimguiname"] = "igTabItemEx" defs["igTabItemEx"][1]["defaults"] = {} defs["igTabItemEx"][1]["funcname"] = "TabItemEx" -defs["igTabItemEx"][1]["location"] = "internal" +defs["igTabItemEx"][1]["location"] = "imgui_internal:1930" defs["igTabItemEx"][1]["namespace"] = "ImGui" defs["igTabItemEx"][1]["ov_cimguiname"] = "igTabItemEx" defs["igTabItemEx"][1]["ret"] = "bool" @@ -21631,7 +21649,7 @@ defs["igTabItemLabelAndCloseButton"][1]["call_args"] = "(draw_list,bb,flags,fram defs["igTabItemLabelAndCloseButton"][1]["cimguiname"] = "igTabItemLabelAndCloseButton" defs["igTabItemLabelAndCloseButton"][1]["defaults"] = {} defs["igTabItemLabelAndCloseButton"][1]["funcname"] = "TabItemLabelAndCloseButton" -defs["igTabItemLabelAndCloseButton"][1]["location"] = "internal" +defs["igTabItemLabelAndCloseButton"][1]["location"] = "imgui_internal:1933" defs["igTabItemLabelAndCloseButton"][1]["namespace"] = "ImGui" defs["igTabItemLabelAndCloseButton"][1]["ov_cimguiname"] = "igTabItemLabelAndCloseButton" defs["igTabItemLabelAndCloseButton"][1]["ret"] = "bool" @@ -21650,7 +21668,7 @@ defs["igTempInputIsActive"][1]["call_args"] = "(id)" defs["igTempInputIsActive"][1]["cimguiname"] = "igTempInputIsActive" defs["igTempInputIsActive"][1]["defaults"] = {} defs["igTempInputIsActive"][1]["funcname"] = "TempInputIsActive" -defs["igTempInputIsActive"][1]["location"] = "internal" +defs["igTempInputIsActive"][1]["location"] = "imgui_internal:2008" defs["igTempInputIsActive"][1]["namespace"] = "ImGui" defs["igTempInputIsActive"][1]["ov_cimguiname"] = "igTempInputIsActive" defs["igTempInputIsActive"][1]["ret"] = "bool" @@ -21689,10 +21707,10 @@ defs["igTempInputScalar"][1]["argsoriginal"] = "(const ImRect& bb,ImGuiID id,con defs["igTempInputScalar"][1]["call_args"] = "(bb,id,label,data_type,p_data,format,p_clamp_min,p_clamp_max)" defs["igTempInputScalar"][1]["cimguiname"] = "igTempInputScalar" defs["igTempInputScalar"][1]["defaults"] = {} -defs["igTempInputScalar"][1]["defaults"]["p_clamp_max"] = "((void*)0)" -defs["igTempInputScalar"][1]["defaults"]["p_clamp_min"] = "((void*)0)" +defs["igTempInputScalar"][1]["defaults"]["p_clamp_max"] = "NULL" +defs["igTempInputScalar"][1]["defaults"]["p_clamp_min"] = "NULL" defs["igTempInputScalar"][1]["funcname"] = "TempInputScalar" -defs["igTempInputScalar"][1]["location"] = "internal" +defs["igTempInputScalar"][1]["location"] = "imgui_internal:2007" defs["igTempInputScalar"][1]["namespace"] = "ImGui" defs["igTempInputScalar"][1]["ov_cimguiname"] = "igTempInputScalar" defs["igTempInputScalar"][1]["ret"] = "bool" @@ -21726,7 +21744,7 @@ defs["igTempInputText"][1]["call_args"] = "(bb,id,label,buf,buf_size,flags)" defs["igTempInputText"][1]["cimguiname"] = "igTempInputText" defs["igTempInputText"][1]["defaults"] = {} defs["igTempInputText"][1]["funcname"] = "TempInputText" -defs["igTempInputText"][1]["location"] = "internal" +defs["igTempInputText"][1]["location"] = "imgui_internal:2006" defs["igTempInputText"][1]["namespace"] = "ImGui" defs["igTempInputText"][1]["ov_cimguiname"] = "igTempInputText" defs["igTempInputText"][1]["ret"] = "bool" @@ -21749,7 +21767,7 @@ defs["igText"][1]["cimguiname"] = "igText" defs["igText"][1]["defaults"] = {} defs["igText"][1]["funcname"] = "Text" defs["igText"][1]["isvararg"] = "...)" -defs["igText"][1]["location"] = "imgui" +defs["igText"][1]["location"] = "imgui:424" defs["igText"][1]["namespace"] = "ImGui" defs["igText"][1]["ov_cimguiname"] = "igText" defs["igText"][1]["ret"] = "void" @@ -21775,7 +21793,7 @@ defs["igTextColored"][1]["cimguiname"] = "igTextColored" defs["igTextColored"][1]["defaults"] = {} defs["igTextColored"][1]["funcname"] = "TextColored" defs["igTextColored"][1]["isvararg"] = "...)" -defs["igTextColored"][1]["location"] = "imgui" +defs["igTextColored"][1]["location"] = "imgui:426" defs["igTextColored"][1]["namespace"] = "ImGui" defs["igTextColored"][1]["ov_cimguiname"] = "igTextColored" defs["igTextColored"][1]["ret"] = "void" @@ -21800,7 +21818,7 @@ defs["igTextColoredV"][1]["call_args"] = "(col,fmt,args)" defs["igTextColoredV"][1]["cimguiname"] = "igTextColoredV" defs["igTextColoredV"][1]["defaults"] = {} defs["igTextColoredV"][1]["funcname"] = "TextColoredV" -defs["igTextColoredV"][1]["location"] = "imgui" +defs["igTextColoredV"][1]["location"] = "imgui:427" defs["igTextColoredV"][1]["namespace"] = "ImGui" defs["igTextColoredV"][1]["ov_cimguiname"] = "igTextColoredV" defs["igTextColoredV"][1]["ret"] = "void" @@ -21823,7 +21841,7 @@ defs["igTextDisabled"][1]["cimguiname"] = "igTextDisabled" defs["igTextDisabled"][1]["defaults"] = {} defs["igTextDisabled"][1]["funcname"] = "TextDisabled" defs["igTextDisabled"][1]["isvararg"] = "...)" -defs["igTextDisabled"][1]["location"] = "imgui" +defs["igTextDisabled"][1]["location"] = "imgui:428" defs["igTextDisabled"][1]["namespace"] = "ImGui" defs["igTextDisabled"][1]["ov_cimguiname"] = "igTextDisabled" defs["igTextDisabled"][1]["ret"] = "void" @@ -21845,7 +21863,7 @@ defs["igTextDisabledV"][1]["call_args"] = "(fmt,args)" defs["igTextDisabledV"][1]["cimguiname"] = "igTextDisabledV" defs["igTextDisabledV"][1]["defaults"] = {} defs["igTextDisabledV"][1]["funcname"] = "TextDisabledV" -defs["igTextDisabledV"][1]["location"] = "imgui" +defs["igTextDisabledV"][1]["location"] = "imgui:429" defs["igTextDisabledV"][1]["namespace"] = "ImGui" defs["igTextDisabledV"][1]["ov_cimguiname"] = "igTextDisabledV" defs["igTextDisabledV"][1]["ret"] = "void" @@ -21870,9 +21888,9 @@ defs["igTextEx"][1]["call_args"] = "(text,text_end,flags)" defs["igTextEx"][1]["cimguiname"] = "igTextEx" defs["igTextEx"][1]["defaults"] = {} defs["igTextEx"][1]["defaults"]["flags"] = "0" -defs["igTextEx"][1]["defaults"]["text_end"] = "((void*)0)" +defs["igTextEx"][1]["defaults"]["text_end"] = "NULL" defs["igTextEx"][1]["funcname"] = "TextEx" -defs["igTextEx"][1]["location"] = "internal" +defs["igTextEx"][1]["location"] = "imgui_internal:1966" defs["igTextEx"][1]["namespace"] = "ImGui" defs["igTextEx"][1]["ov_cimguiname"] = "igTextEx" defs["igTextEx"][1]["ret"] = "void" @@ -21893,9 +21911,9 @@ defs["igTextUnformatted"][1]["argsoriginal"] = "(const char* text,const char* te defs["igTextUnformatted"][1]["call_args"] = "(text,text_end)" defs["igTextUnformatted"][1]["cimguiname"] = "igTextUnformatted" defs["igTextUnformatted"][1]["defaults"] = {} -defs["igTextUnformatted"][1]["defaults"]["text_end"] = "((void*)0)" +defs["igTextUnformatted"][1]["defaults"]["text_end"] = "NULL" defs["igTextUnformatted"][1]["funcname"] = "TextUnformatted" -defs["igTextUnformatted"][1]["location"] = "imgui" +defs["igTextUnformatted"][1]["location"] = "imgui:423" defs["igTextUnformatted"][1]["namespace"] = "ImGui" defs["igTextUnformatted"][1]["ov_cimguiname"] = "igTextUnformatted" defs["igTextUnformatted"][1]["ret"] = "void" @@ -21917,7 +21935,7 @@ defs["igTextV"][1]["call_args"] = "(fmt,args)" defs["igTextV"][1]["cimguiname"] = "igTextV" defs["igTextV"][1]["defaults"] = {} defs["igTextV"][1]["funcname"] = "TextV" -defs["igTextV"][1]["location"] = "imgui" +defs["igTextV"][1]["location"] = "imgui:425" defs["igTextV"][1]["namespace"] = "ImGui" defs["igTextV"][1]["ov_cimguiname"] = "igTextV" defs["igTextV"][1]["ret"] = "void" @@ -21940,7 +21958,7 @@ defs["igTextWrapped"][1]["cimguiname"] = "igTextWrapped" defs["igTextWrapped"][1]["defaults"] = {} defs["igTextWrapped"][1]["funcname"] = "TextWrapped" defs["igTextWrapped"][1]["isvararg"] = "...)" -defs["igTextWrapped"][1]["location"] = "imgui" +defs["igTextWrapped"][1]["location"] = "imgui:430" defs["igTextWrapped"][1]["namespace"] = "ImGui" defs["igTextWrapped"][1]["ov_cimguiname"] = "igTextWrapped" defs["igTextWrapped"][1]["ret"] = "void" @@ -21962,7 +21980,7 @@ defs["igTextWrappedV"][1]["call_args"] = "(fmt,args)" defs["igTextWrappedV"][1]["cimguiname"] = "igTextWrappedV" defs["igTextWrappedV"][1]["defaults"] = {} defs["igTextWrappedV"][1]["funcname"] = "TextWrappedV" -defs["igTextWrappedV"][1]["location"] = "imgui" +defs["igTextWrappedV"][1]["location"] = "imgui:431" defs["igTextWrappedV"][1]["namespace"] = "ImGui" defs["igTextWrappedV"][1]["ov_cimguiname"] = "igTextWrappedV" defs["igTextWrappedV"][1]["ret"] = "void" @@ -21981,7 +21999,7 @@ defs["igTreeNode"][1]["call_args"] = "(label)" defs["igTreeNode"][1]["cimguiname"] = "igTreeNode" defs["igTreeNode"][1]["defaults"] = {} defs["igTreeNode"][1]["funcname"] = "TreeNode" -defs["igTreeNode"][1]["location"] = "imgui" +defs["igTreeNode"][1]["location"] = "imgui:537" defs["igTreeNode"][1]["namespace"] = "ImGui" defs["igTreeNode"][1]["ov_cimguiname"] = "igTreeNodeStr" defs["igTreeNode"][1]["ret"] = "bool" @@ -22005,7 +22023,7 @@ defs["igTreeNode"][2]["cimguiname"] = "igTreeNode" defs["igTreeNode"][2]["defaults"] = {} defs["igTreeNode"][2]["funcname"] = "TreeNode" defs["igTreeNode"][2]["isvararg"] = "...)" -defs["igTreeNode"][2]["location"] = "imgui" +defs["igTreeNode"][2]["location"] = "imgui:538" defs["igTreeNode"][2]["namespace"] = "ImGui" defs["igTreeNode"][2]["ov_cimguiname"] = "igTreeNodeStrStr" defs["igTreeNode"][2]["ret"] = "bool" @@ -22029,7 +22047,7 @@ defs["igTreeNode"][3]["cimguiname"] = "igTreeNode" defs["igTreeNode"][3]["defaults"] = {} defs["igTreeNode"][3]["funcname"] = "TreeNode" defs["igTreeNode"][3]["isvararg"] = "...)" -defs["igTreeNode"][3]["location"] = "imgui" +defs["igTreeNode"][3]["location"] = "imgui:539" defs["igTreeNode"][3]["namespace"] = "ImGui" defs["igTreeNode"][3]["ov_cimguiname"] = "igTreeNodePtr" defs["igTreeNode"][3]["ret"] = "bool" @@ -22058,9 +22076,9 @@ defs["igTreeNodeBehavior"][1]["argsoriginal"] = "(ImGuiID id,ImGuiTreeNodeFlags defs["igTreeNodeBehavior"][1]["call_args"] = "(id,flags,label,label_end)" defs["igTreeNodeBehavior"][1]["cimguiname"] = "igTreeNodeBehavior" defs["igTreeNodeBehavior"][1]["defaults"] = {} -defs["igTreeNodeBehavior"][1]["defaults"]["label_end"] = "((void*)0)" +defs["igTreeNodeBehavior"][1]["defaults"]["label_end"] = "NULL" defs["igTreeNodeBehavior"][1]["funcname"] = "TreeNodeBehavior" -defs["igTreeNodeBehavior"][1]["location"] = "internal" +defs["igTreeNodeBehavior"][1]["location"] = "imgui_internal:1984" defs["igTreeNodeBehavior"][1]["namespace"] = "ImGui" defs["igTreeNodeBehavior"][1]["ov_cimguiname"] = "igTreeNodeBehavior" defs["igTreeNodeBehavior"][1]["ret"] = "bool" @@ -22083,7 +22101,7 @@ defs["igTreeNodeBehaviorIsOpen"][1]["cimguiname"] = "igTreeNodeBehaviorIsOpen" defs["igTreeNodeBehaviorIsOpen"][1]["defaults"] = {} defs["igTreeNodeBehaviorIsOpen"][1]["defaults"]["flags"] = "0" defs["igTreeNodeBehaviorIsOpen"][1]["funcname"] = "TreeNodeBehaviorIsOpen" -defs["igTreeNodeBehaviorIsOpen"][1]["location"] = "internal" +defs["igTreeNodeBehaviorIsOpen"][1]["location"] = "imgui_internal:1985" defs["igTreeNodeBehaviorIsOpen"][1]["namespace"] = "ImGui" defs["igTreeNodeBehaviorIsOpen"][1]["ov_cimguiname"] = "igTreeNodeBehaviorIsOpen" defs["igTreeNodeBehaviorIsOpen"][1]["ret"] = "bool" @@ -22106,7 +22124,7 @@ defs["igTreeNodeEx"][1]["cimguiname"] = "igTreeNodeEx" defs["igTreeNodeEx"][1]["defaults"] = {} defs["igTreeNodeEx"][1]["defaults"]["flags"] = "0" defs["igTreeNodeEx"][1]["funcname"] = "TreeNodeEx" -defs["igTreeNodeEx"][1]["location"] = "imgui" +defs["igTreeNodeEx"][1]["location"] = "imgui:542" defs["igTreeNodeEx"][1]["namespace"] = "ImGui" defs["igTreeNodeEx"][1]["ov_cimguiname"] = "igTreeNodeExStr" defs["igTreeNodeEx"][1]["ret"] = "bool" @@ -22133,7 +22151,7 @@ defs["igTreeNodeEx"][2]["cimguiname"] = "igTreeNodeEx" defs["igTreeNodeEx"][2]["defaults"] = {} defs["igTreeNodeEx"][2]["funcname"] = "TreeNodeEx" defs["igTreeNodeEx"][2]["isvararg"] = "...)" -defs["igTreeNodeEx"][2]["location"] = "imgui" +defs["igTreeNodeEx"][2]["location"] = "imgui:543" defs["igTreeNodeEx"][2]["namespace"] = "ImGui" defs["igTreeNodeEx"][2]["ov_cimguiname"] = "igTreeNodeExStrStr" defs["igTreeNodeEx"][2]["ret"] = "bool" @@ -22160,7 +22178,7 @@ defs["igTreeNodeEx"][3]["cimguiname"] = "igTreeNodeEx" defs["igTreeNodeEx"][3]["defaults"] = {} defs["igTreeNodeEx"][3]["funcname"] = "TreeNodeEx" defs["igTreeNodeEx"][3]["isvararg"] = "...)" -defs["igTreeNodeEx"][3]["location"] = "imgui" +defs["igTreeNodeEx"][3]["location"] = "imgui:544" defs["igTreeNodeEx"][3]["namespace"] = "ImGui" defs["igTreeNodeEx"][3]["ov_cimguiname"] = "igTreeNodeExPtr" defs["igTreeNodeEx"][3]["ret"] = "bool" @@ -22190,7 +22208,7 @@ defs["igTreeNodeExV"][1]["call_args"] = "(str_id,flags,fmt,args)" defs["igTreeNodeExV"][1]["cimguiname"] = "igTreeNodeExV" defs["igTreeNodeExV"][1]["defaults"] = {} defs["igTreeNodeExV"][1]["funcname"] = "TreeNodeExV" -defs["igTreeNodeExV"][1]["location"] = "imgui" +defs["igTreeNodeExV"][1]["location"] = "imgui:545" defs["igTreeNodeExV"][1]["namespace"] = "ImGui" defs["igTreeNodeExV"][1]["ov_cimguiname"] = "igTreeNodeExVStr" defs["igTreeNodeExV"][1]["ret"] = "bool" @@ -22216,7 +22234,7 @@ defs["igTreeNodeExV"][2]["call_args"] = "(ptr_id,flags,fmt,args)" defs["igTreeNodeExV"][2]["cimguiname"] = "igTreeNodeExV" defs["igTreeNodeExV"][2]["defaults"] = {} defs["igTreeNodeExV"][2]["funcname"] = "TreeNodeExV" -defs["igTreeNodeExV"][2]["location"] = "imgui" +defs["igTreeNodeExV"][2]["location"] = "imgui:546" defs["igTreeNodeExV"][2]["namespace"] = "ImGui" defs["igTreeNodeExV"][2]["ov_cimguiname"] = "igTreeNodeExVPtr" defs["igTreeNodeExV"][2]["ret"] = "bool" @@ -22242,7 +22260,7 @@ defs["igTreeNodeV"][1]["call_args"] = "(str_id,fmt,args)" defs["igTreeNodeV"][1]["cimguiname"] = "igTreeNodeV" defs["igTreeNodeV"][1]["defaults"] = {} defs["igTreeNodeV"][1]["funcname"] = "TreeNodeV" -defs["igTreeNodeV"][1]["location"] = "imgui" +defs["igTreeNodeV"][1]["location"] = "imgui:540" defs["igTreeNodeV"][1]["namespace"] = "ImGui" defs["igTreeNodeV"][1]["ov_cimguiname"] = "igTreeNodeVStr" defs["igTreeNodeV"][1]["ret"] = "bool" @@ -22265,7 +22283,7 @@ defs["igTreeNodeV"][2]["call_args"] = "(ptr_id,fmt,args)" defs["igTreeNodeV"][2]["cimguiname"] = "igTreeNodeV" defs["igTreeNodeV"][2]["defaults"] = {} defs["igTreeNodeV"][2]["funcname"] = "TreeNodeV" -defs["igTreeNodeV"][2]["location"] = "imgui" +defs["igTreeNodeV"][2]["location"] = "imgui:541" defs["igTreeNodeV"][2]["namespace"] = "ImGui" defs["igTreeNodeV"][2]["ov_cimguiname"] = "igTreeNodeVPtr" defs["igTreeNodeV"][2]["ret"] = "bool" @@ -22282,7 +22300,7 @@ defs["igTreePop"][1]["call_args"] = "()" defs["igTreePop"][1]["cimguiname"] = "igTreePop" defs["igTreePop"][1]["defaults"] = {} defs["igTreePop"][1]["funcname"] = "TreePop" -defs["igTreePop"][1]["location"] = "imgui" +defs["igTreePop"][1]["location"] = "imgui:549" defs["igTreePop"][1]["namespace"] = "ImGui" defs["igTreePop"][1]["ov_cimguiname"] = "igTreePop" defs["igTreePop"][1]["ret"] = "void" @@ -22301,7 +22319,7 @@ defs["igTreePush"][1]["call_args"] = "(str_id)" defs["igTreePush"][1]["cimguiname"] = "igTreePush" defs["igTreePush"][1]["defaults"] = {} defs["igTreePush"][1]["funcname"] = "TreePush" -defs["igTreePush"][1]["location"] = "imgui" +defs["igTreePush"][1]["location"] = "imgui:547" defs["igTreePush"][1]["namespace"] = "ImGui" defs["igTreePush"][1]["ov_cimguiname"] = "igTreePushStr" defs["igTreePush"][1]["ret"] = "void" @@ -22317,9 +22335,9 @@ defs["igTreePush"][2]["argsoriginal"] = "(const void* ptr_id=((void*)0))" defs["igTreePush"][2]["call_args"] = "(ptr_id)" defs["igTreePush"][2]["cimguiname"] = "igTreePush" defs["igTreePush"][2]["defaults"] = {} -defs["igTreePush"][2]["defaults"]["ptr_id"] = "((void*)0)" +defs["igTreePush"][2]["defaults"]["ptr_id"] = "NULL" defs["igTreePush"][2]["funcname"] = "TreePush" -defs["igTreePush"][2]["location"] = "imgui" +defs["igTreePush"][2]["location"] = "imgui:548" defs["igTreePush"][2]["namespace"] = "ImGui" defs["igTreePush"][2]["ov_cimguiname"] = "igTreePushPtr" defs["igTreePush"][2]["ret"] = "void" @@ -22339,7 +22357,7 @@ defs["igTreePushOverrideID"][1]["call_args"] = "(id)" defs["igTreePushOverrideID"][1]["cimguiname"] = "igTreePushOverrideID" defs["igTreePushOverrideID"][1]["defaults"] = {} defs["igTreePushOverrideID"][1]["funcname"] = "TreePushOverrideID" -defs["igTreePushOverrideID"][1]["location"] = "internal" +defs["igTreePushOverrideID"][1]["location"] = "imgui_internal:1986" defs["igTreePushOverrideID"][1]["namespace"] = "ImGui" defs["igTreePushOverrideID"][1]["ov_cimguiname"] = "igTreePushOverrideID" defs["igTreePushOverrideID"][1]["ret"] = "void" @@ -22359,7 +22377,7 @@ defs["igUnindent"][1]["cimguiname"] = "igUnindent" defs["igUnindent"][1]["defaults"] = {} defs["igUnindent"][1]["defaults"]["indent_w"] = "0.0f" defs["igUnindent"][1]["funcname"] = "Unindent" -defs["igUnindent"][1]["location"] = "imgui" +defs["igUnindent"][1]["location"] = "imgui:388" defs["igUnindent"][1]["namespace"] = "ImGui" defs["igUnindent"][1]["ov_cimguiname"] = "igUnindent" defs["igUnindent"][1]["ret"] = "void" @@ -22375,7 +22393,7 @@ defs["igUpdateHoveredWindowAndCaptureFlags"][1]["call_args"] = "()" defs["igUpdateHoveredWindowAndCaptureFlags"][1]["cimguiname"] = "igUpdateHoveredWindowAndCaptureFlags" defs["igUpdateHoveredWindowAndCaptureFlags"][1]["defaults"] = {} defs["igUpdateHoveredWindowAndCaptureFlags"][1]["funcname"] = "UpdateHoveredWindowAndCaptureFlags" -defs["igUpdateHoveredWindowAndCaptureFlags"][1]["location"] = "internal" +defs["igUpdateHoveredWindowAndCaptureFlags"][1]["location"] = "imgui_internal:1806" defs["igUpdateHoveredWindowAndCaptureFlags"][1]["namespace"] = "ImGui" defs["igUpdateHoveredWindowAndCaptureFlags"][1]["ov_cimguiname"] = "igUpdateHoveredWindowAndCaptureFlags" defs["igUpdateHoveredWindowAndCaptureFlags"][1]["ret"] = "void" @@ -22391,7 +22409,7 @@ defs["igUpdateMouseMovingWindowEndFrame"][1]["call_args"] = "()" defs["igUpdateMouseMovingWindowEndFrame"][1]["cimguiname"] = "igUpdateMouseMovingWindowEndFrame" defs["igUpdateMouseMovingWindowEndFrame"][1]["defaults"] = {} defs["igUpdateMouseMovingWindowEndFrame"][1]["funcname"] = "UpdateMouseMovingWindowEndFrame" -defs["igUpdateMouseMovingWindowEndFrame"][1]["location"] = "internal" +defs["igUpdateMouseMovingWindowEndFrame"][1]["location"] = "imgui_internal:1809" defs["igUpdateMouseMovingWindowEndFrame"][1]["namespace"] = "ImGui" defs["igUpdateMouseMovingWindowEndFrame"][1]["ov_cimguiname"] = "igUpdateMouseMovingWindowEndFrame" defs["igUpdateMouseMovingWindowEndFrame"][1]["ret"] = "void" @@ -22407,7 +22425,7 @@ defs["igUpdateMouseMovingWindowNewFrame"][1]["call_args"] = "()" defs["igUpdateMouseMovingWindowNewFrame"][1]["cimguiname"] = "igUpdateMouseMovingWindowNewFrame" defs["igUpdateMouseMovingWindowNewFrame"][1]["defaults"] = {} defs["igUpdateMouseMovingWindowNewFrame"][1]["funcname"] = "UpdateMouseMovingWindowNewFrame" -defs["igUpdateMouseMovingWindowNewFrame"][1]["location"] = "internal" +defs["igUpdateMouseMovingWindowNewFrame"][1]["location"] = "imgui_internal:1808" defs["igUpdateMouseMovingWindowNewFrame"][1]["namespace"] = "ImGui" defs["igUpdateMouseMovingWindowNewFrame"][1]["ov_cimguiname"] = "igUpdateMouseMovingWindowNewFrame" defs["igUpdateMouseMovingWindowNewFrame"][1]["ret"] = "void" @@ -22432,7 +22450,7 @@ defs["igUpdateWindowParentAndRootLinks"][1]["call_args"] = "(window,flags,parent defs["igUpdateWindowParentAndRootLinks"][1]["cimguiname"] = "igUpdateWindowParentAndRootLinks" defs["igUpdateWindowParentAndRootLinks"][1]["defaults"] = {} defs["igUpdateWindowParentAndRootLinks"][1]["funcname"] = "UpdateWindowParentAndRootLinks" -defs["igUpdateWindowParentAndRootLinks"][1]["location"] = "internal" +defs["igUpdateWindowParentAndRootLinks"][1]["location"] = "imgui_internal:1779" defs["igUpdateWindowParentAndRootLinks"][1]["namespace"] = "ImGui" defs["igUpdateWindowParentAndRootLinks"][1]["ov_cimguiname"] = "igUpdateWindowParentAndRootLinks" defs["igUpdateWindowParentAndRootLinks"][1]["ret"] = "void" @@ -22471,7 +22489,7 @@ defs["igVSliderFloat"][1]["defaults"] = {} defs["igVSliderFloat"][1]["defaults"]["flags"] = "0" defs["igVSliderFloat"][1]["defaults"]["format"] = "\"%.3f\"" defs["igVSliderFloat"][1]["funcname"] = "VSliderFloat" -defs["igVSliderFloat"][1]["location"] = "imgui" +defs["igVSliderFloat"][1]["location"] = "imgui:503" defs["igVSliderFloat"][1]["namespace"] = "ImGui" defs["igVSliderFloat"][1]["ov_cimguiname"] = "igVSliderFloat" defs["igVSliderFloat"][1]["ret"] = "bool" @@ -22510,7 +22528,7 @@ defs["igVSliderInt"][1]["defaults"] = {} defs["igVSliderInt"][1]["defaults"]["flags"] = "0" defs["igVSliderInt"][1]["defaults"]["format"] = "\"%d\"" defs["igVSliderInt"][1]["funcname"] = "VSliderInt" -defs["igVSliderInt"][1]["location"] = "imgui" +defs["igVSliderInt"][1]["location"] = "imgui:504" defs["igVSliderInt"][1]["namespace"] = "ImGui" defs["igVSliderInt"][1]["ov_cimguiname"] = "igVSliderInt" defs["igVSliderInt"][1]["ret"] = "bool" @@ -22550,9 +22568,9 @@ defs["igVSliderScalar"][1]["call_args"] = "(label,size,data_type,p_data,p_min,p_ defs["igVSliderScalar"][1]["cimguiname"] = "igVSliderScalar" defs["igVSliderScalar"][1]["defaults"] = {} defs["igVSliderScalar"][1]["defaults"]["flags"] = "0" -defs["igVSliderScalar"][1]["defaults"]["format"] = "((void*)0)" +defs["igVSliderScalar"][1]["defaults"]["format"] = "NULL" defs["igVSliderScalar"][1]["funcname"] = "VSliderScalar" -defs["igVSliderScalar"][1]["location"] = "imgui" +defs["igVSliderScalar"][1]["location"] = "imgui:505" defs["igVSliderScalar"][1]["namespace"] = "ImGui" defs["igVSliderScalar"][1]["ov_cimguiname"] = "igVSliderScalar" defs["igVSliderScalar"][1]["ret"] = "bool" @@ -22574,7 +22592,7 @@ defs["igValue"][1]["call_args"] = "(prefix,b)" defs["igValue"][1]["cimguiname"] = "igValue" defs["igValue"][1]["defaults"] = {} defs["igValue"][1]["funcname"] = "Value" -defs["igValue"][1]["location"] = "imgui" +defs["igValue"][1]["location"] = "imgui:577" defs["igValue"][1]["namespace"] = "ImGui" defs["igValue"][1]["ov_cimguiname"] = "igValueBool" defs["igValue"][1]["ret"] = "void" @@ -22594,7 +22612,7 @@ defs["igValue"][2]["call_args"] = "(prefix,v)" defs["igValue"][2]["cimguiname"] = "igValue" defs["igValue"][2]["defaults"] = {} defs["igValue"][2]["funcname"] = "Value" -defs["igValue"][2]["location"] = "imgui" +defs["igValue"][2]["location"] = "imgui:578" defs["igValue"][2]["namespace"] = "ImGui" defs["igValue"][2]["ov_cimguiname"] = "igValueInt" defs["igValue"][2]["ret"] = "void" @@ -22614,7 +22632,7 @@ defs["igValue"][3]["call_args"] = "(prefix,v)" defs["igValue"][3]["cimguiname"] = "igValue" defs["igValue"][3]["defaults"] = {} defs["igValue"][3]["funcname"] = "Value" -defs["igValue"][3]["location"] = "imgui" +defs["igValue"][3]["location"] = "imgui:579" defs["igValue"][3]["namespace"] = "ImGui" defs["igValue"][3]["ov_cimguiname"] = "igValueUint" defs["igValue"][3]["ret"] = "void" @@ -22636,9 +22654,9 @@ defs["igValue"][4]["argsoriginal"] = "(const char* prefix,float v,const char* fl defs["igValue"][4]["call_args"] = "(prefix,v,float_format)" defs["igValue"][4]["cimguiname"] = "igValue" defs["igValue"][4]["defaults"] = {} -defs["igValue"][4]["defaults"]["float_format"] = "((void*)0)" +defs["igValue"][4]["defaults"]["float_format"] = "NULL" defs["igValue"][4]["funcname"] = "Value" -defs["igValue"][4]["location"] = "imgui" +defs["igValue"][4]["location"] = "imgui:580" defs["igValue"][4]["namespace"] = "ImGui" defs["igValue"][4]["ov_cimguiname"] = "igValueFloat" defs["igValue"][4]["ret"] = "void" diff --git a/generator/output/impl_definitions.json b/generator/output/impl_definitions.json index 8202aac..91f0e42 100644 --- a/generator/output/impl_definitions.json +++ b/generator/output/impl_definitions.json @@ -17,7 +17,7 @@ "cimguiname": "ImGui_ImplGlfw_CharCallback", "defaults": [], "funcname": "ImGui_ImplGlfw_CharCallback", - "location": "imgui_impl_glfw", + "location": "imgui_impl_glfw:35", "ov_cimguiname": "ImGui_ImplGlfw_CharCallback", "ret": "void", "signature": "(GLFWwindow*,unsigned int)", @@ -42,7 +42,7 @@ "cimguiname": "ImGui_ImplGlfw_InitForOpenGL", "defaults": [], "funcname": "ImGui_ImplGlfw_InitForOpenGL", - "location": "imgui_impl_glfw", + "location": "imgui_impl_glfw:24", "ov_cimguiname": "ImGui_ImplGlfw_InitForOpenGL", "ret": "bool", "signature": "(GLFWwindow*,bool)", @@ -67,7 +67,7 @@ "cimguiname": "ImGui_ImplGlfw_InitForVulkan", "defaults": [], "funcname": "ImGui_ImplGlfw_InitForVulkan", - "location": "imgui_impl_glfw", + "location": "imgui_impl_glfw:25", "ov_cimguiname": "ImGui_ImplGlfw_InitForVulkan", "ret": "bool", "signature": "(GLFWwindow*,bool)", @@ -104,7 +104,7 @@ "cimguiname": "ImGui_ImplGlfw_KeyCallback", "defaults": [], "funcname": "ImGui_ImplGlfw_KeyCallback", - "location": "imgui_impl_glfw", + "location": "imgui_impl_glfw:34", "ov_cimguiname": "ImGui_ImplGlfw_KeyCallback", "ret": "void", "signature": "(GLFWwindow*,int,int,int,int)", @@ -137,7 +137,7 @@ "cimguiname": "ImGui_ImplGlfw_MouseButtonCallback", "defaults": [], "funcname": "ImGui_ImplGlfw_MouseButtonCallback", - "location": "imgui_impl_glfw", + "location": "imgui_impl_glfw:32", "ov_cimguiname": "ImGui_ImplGlfw_MouseButtonCallback", "ret": "void", "signature": "(GLFWwindow*,int,int,int)", @@ -153,7 +153,7 @@ "cimguiname": "ImGui_ImplGlfw_NewFrame", "defaults": [], "funcname": "ImGui_ImplGlfw_NewFrame", - "location": "imgui_impl_glfw", + "location": "imgui_impl_glfw:27", "ov_cimguiname": "ImGui_ImplGlfw_NewFrame", "ret": "void", "signature": "()", @@ -182,7 +182,7 @@ "cimguiname": "ImGui_ImplGlfw_ScrollCallback", "defaults": [], "funcname": "ImGui_ImplGlfw_ScrollCallback", - "location": "imgui_impl_glfw", + "location": "imgui_impl_glfw:33", "ov_cimguiname": "ImGui_ImplGlfw_ScrollCallback", "ret": "void", "signature": "(GLFWwindow*,double,double)", @@ -198,7 +198,7 @@ "cimguiname": "ImGui_ImplGlfw_Shutdown", "defaults": [], "funcname": "ImGui_ImplGlfw_Shutdown", - "location": "imgui_impl_glfw", + "location": "imgui_impl_glfw:26", "ov_cimguiname": "ImGui_ImplGlfw_Shutdown", "ret": "void", "signature": "()", @@ -214,7 +214,7 @@ "cimguiname": "ImGui_ImplOpenGL2_CreateDeviceObjects", "defaults": [], "funcname": "ImGui_ImplOpenGL2_CreateDeviceObjects", - "location": "imgui_impl_opengl2", + "location": "imgui_impl_opengl2:30", "ov_cimguiname": "ImGui_ImplOpenGL2_CreateDeviceObjects", "ret": "bool", "signature": "()", @@ -230,7 +230,7 @@ "cimguiname": "ImGui_ImplOpenGL2_CreateFontsTexture", "defaults": [], "funcname": "ImGui_ImplOpenGL2_CreateFontsTexture", - "location": "imgui_impl_opengl2", + "location": "imgui_impl_opengl2:28", "ov_cimguiname": "ImGui_ImplOpenGL2_CreateFontsTexture", "ret": "bool", "signature": "()", @@ -246,7 +246,7 @@ "cimguiname": "ImGui_ImplOpenGL2_DestroyDeviceObjects", "defaults": [], "funcname": "ImGui_ImplOpenGL2_DestroyDeviceObjects", - "location": "imgui_impl_opengl2", + "location": "imgui_impl_opengl2:31", "ov_cimguiname": "ImGui_ImplOpenGL2_DestroyDeviceObjects", "ret": "void", "signature": "()", @@ -262,7 +262,7 @@ "cimguiname": "ImGui_ImplOpenGL2_DestroyFontsTexture", "defaults": [], "funcname": "ImGui_ImplOpenGL2_DestroyFontsTexture", - "location": "imgui_impl_opengl2", + "location": "imgui_impl_opengl2:29", "ov_cimguiname": "ImGui_ImplOpenGL2_DestroyFontsTexture", "ret": "void", "signature": "()", @@ -278,7 +278,7 @@ "cimguiname": "ImGui_ImplOpenGL2_Init", "defaults": [], "funcname": "ImGui_ImplOpenGL2_Init", - "location": "imgui_impl_opengl2", + "location": "imgui_impl_opengl2:22", "ov_cimguiname": "ImGui_ImplOpenGL2_Init", "ret": "bool", "signature": "()", @@ -294,7 +294,7 @@ "cimguiname": "ImGui_ImplOpenGL2_NewFrame", "defaults": [], "funcname": "ImGui_ImplOpenGL2_NewFrame", - "location": "imgui_impl_opengl2", + "location": "imgui_impl_opengl2:24", "ov_cimguiname": "ImGui_ImplOpenGL2_NewFrame", "ret": "void", "signature": "()", @@ -315,7 +315,7 @@ "cimguiname": "ImGui_ImplOpenGL2_RenderDrawData", "defaults": [], "funcname": "ImGui_ImplOpenGL2_RenderDrawData", - "location": "imgui_impl_opengl2", + "location": "imgui_impl_opengl2:25", "ov_cimguiname": "ImGui_ImplOpenGL2_RenderDrawData", "ret": "void", "signature": "(ImDrawData*)", @@ -331,7 +331,7 @@ "cimguiname": "ImGui_ImplOpenGL2_Shutdown", "defaults": [], "funcname": "ImGui_ImplOpenGL2_Shutdown", - "location": "imgui_impl_opengl2", + "location": "imgui_impl_opengl2:23", "ov_cimguiname": "ImGui_ImplOpenGL2_Shutdown", "ret": "void", "signature": "()", @@ -347,7 +347,7 @@ "cimguiname": "ImGui_ImplOpenGL3_CreateDeviceObjects", "defaults": [], "funcname": "ImGui_ImplOpenGL3_CreateDeviceObjects", - "location": "imgui_impl_opengl3", + "location": "imgui_impl_opengl3:36", "ov_cimguiname": "ImGui_ImplOpenGL3_CreateDeviceObjects", "ret": "bool", "signature": "()", @@ -363,7 +363,7 @@ "cimguiname": "ImGui_ImplOpenGL3_CreateFontsTexture", "defaults": [], "funcname": "ImGui_ImplOpenGL3_CreateFontsTexture", - "location": "imgui_impl_opengl3", + "location": "imgui_impl_opengl3:34", "ov_cimguiname": "ImGui_ImplOpenGL3_CreateFontsTexture", "ret": "bool", "signature": "()", @@ -379,7 +379,7 @@ "cimguiname": "ImGui_ImplOpenGL3_DestroyDeviceObjects", "defaults": [], "funcname": "ImGui_ImplOpenGL3_DestroyDeviceObjects", - "location": "imgui_impl_opengl3", + "location": "imgui_impl_opengl3:37", "ov_cimguiname": "ImGui_ImplOpenGL3_DestroyDeviceObjects", "ret": "void", "signature": "()", @@ -395,7 +395,7 @@ "cimguiname": "ImGui_ImplOpenGL3_DestroyFontsTexture", "defaults": [], "funcname": "ImGui_ImplOpenGL3_DestroyFontsTexture", - "location": "imgui_impl_opengl3", + "location": "imgui_impl_opengl3:35", "ov_cimguiname": "ImGui_ImplOpenGL3_DestroyFontsTexture", "ret": "void", "signature": "()", @@ -418,7 +418,7 @@ "glsl_version": "((void*)0)" }, "funcname": "ImGui_ImplOpenGL3_Init", - "location": "imgui_impl_opengl3", + "location": "imgui_impl_opengl3:28", "ov_cimguiname": "ImGui_ImplOpenGL3_Init", "ret": "bool", "signature": "(const char*)", @@ -434,7 +434,7 @@ "cimguiname": "ImGui_ImplOpenGL3_NewFrame", "defaults": [], "funcname": "ImGui_ImplOpenGL3_NewFrame", - "location": "imgui_impl_opengl3", + "location": "imgui_impl_opengl3:30", "ov_cimguiname": "ImGui_ImplOpenGL3_NewFrame", "ret": "void", "signature": "()", @@ -455,7 +455,7 @@ "cimguiname": "ImGui_ImplOpenGL3_RenderDrawData", "defaults": [], "funcname": "ImGui_ImplOpenGL3_RenderDrawData", - "location": "imgui_impl_opengl3", + "location": "imgui_impl_opengl3:31", "ov_cimguiname": "ImGui_ImplOpenGL3_RenderDrawData", "ret": "void", "signature": "(ImDrawData*)", @@ -471,7 +471,7 @@ "cimguiname": "ImGui_ImplOpenGL3_Shutdown", "defaults": [], "funcname": "ImGui_ImplOpenGL3_Shutdown", - "location": "imgui_impl_opengl3", + "location": "imgui_impl_opengl3:29", "ov_cimguiname": "ImGui_ImplOpenGL3_Shutdown", "ret": "void", "signature": "()", @@ -492,7 +492,7 @@ "cimguiname": "ImGui_ImplSDL2_InitForD3D", "defaults": [], "funcname": "ImGui_ImplSDL2_InitForD3D", - "location": "imgui_impl_sdl", + "location": "imgui_impl_sdl:25", "ov_cimguiname": "ImGui_ImplSDL2_InitForD3D", "ret": "bool", "signature": "(SDL_Window*)", @@ -513,7 +513,7 @@ "cimguiname": "ImGui_ImplSDL2_InitForMetal", "defaults": [], "funcname": "ImGui_ImplSDL2_InitForMetal", - "location": "imgui_impl_sdl", + "location": "imgui_impl_sdl:26", "ov_cimguiname": "ImGui_ImplSDL2_InitForMetal", "ret": "bool", "signature": "(SDL_Window*)", @@ -538,7 +538,7 @@ "cimguiname": "ImGui_ImplSDL2_InitForOpenGL", "defaults": [], "funcname": "ImGui_ImplSDL2_InitForOpenGL", - "location": "imgui_impl_sdl", + "location": "imgui_impl_sdl:23", "ov_cimguiname": "ImGui_ImplSDL2_InitForOpenGL", "ret": "bool", "signature": "(SDL_Window*,void*)", @@ -559,7 +559,7 @@ "cimguiname": "ImGui_ImplSDL2_InitForVulkan", "defaults": [], "funcname": "ImGui_ImplSDL2_InitForVulkan", - "location": "imgui_impl_sdl", + "location": "imgui_impl_sdl:24", "ov_cimguiname": "ImGui_ImplSDL2_InitForVulkan", "ret": "bool", "signature": "(SDL_Window*)", @@ -580,7 +580,7 @@ "cimguiname": "ImGui_ImplSDL2_NewFrame", "defaults": [], "funcname": "ImGui_ImplSDL2_NewFrame", - "location": "imgui_impl_sdl", + "location": "imgui_impl_sdl:28", "ov_cimguiname": "ImGui_ImplSDL2_NewFrame", "ret": "void", "signature": "(SDL_Window*)", @@ -601,7 +601,7 @@ "cimguiname": "ImGui_ImplSDL2_ProcessEvent", "defaults": [], "funcname": "ImGui_ImplSDL2_ProcessEvent", - "location": "imgui_impl_sdl", + "location": "imgui_impl_sdl:29", "ov_cimguiname": "ImGui_ImplSDL2_ProcessEvent", "ret": "bool", "signature": "(const SDL_Event*)", @@ -617,7 +617,7 @@ "cimguiname": "ImGui_ImplSDL2_Shutdown", "defaults": [], "funcname": "ImGui_ImplSDL2_Shutdown", - "location": "imgui_impl_sdl", + "location": "imgui_impl_sdl:27", "ov_cimguiname": "ImGui_ImplSDL2_Shutdown", "ret": "void", "signature": "()", diff --git a/generator/output/impl_definitions.lua b/generator/output/impl_definitions.lua index f9e044f..f3ba74d 100644 --- a/generator/output/impl_definitions.lua +++ b/generator/output/impl_definitions.lua @@ -14,7 +14,7 @@ defs["ImGui_ImplGlfw_CharCallback"][1]["call_args"] = "(window,c)" defs["ImGui_ImplGlfw_CharCallback"][1]["cimguiname"] = "ImGui_ImplGlfw_CharCallback" defs["ImGui_ImplGlfw_CharCallback"][1]["defaults"] = {} defs["ImGui_ImplGlfw_CharCallback"][1]["funcname"] = "ImGui_ImplGlfw_CharCallback" -defs["ImGui_ImplGlfw_CharCallback"][1]["location"] = "imgui_impl_glfw" +defs["ImGui_ImplGlfw_CharCallback"][1]["location"] = "imgui_impl_glfw:35" defs["ImGui_ImplGlfw_CharCallback"][1]["ov_cimguiname"] = "ImGui_ImplGlfw_CharCallback" defs["ImGui_ImplGlfw_CharCallback"][1]["ret"] = "void" defs["ImGui_ImplGlfw_CharCallback"][1]["signature"] = "(GLFWwindow*,unsigned int)" @@ -35,7 +35,7 @@ defs["ImGui_ImplGlfw_InitForOpenGL"][1]["call_args"] = "(window,install_callback defs["ImGui_ImplGlfw_InitForOpenGL"][1]["cimguiname"] = "ImGui_ImplGlfw_InitForOpenGL" defs["ImGui_ImplGlfw_InitForOpenGL"][1]["defaults"] = {} defs["ImGui_ImplGlfw_InitForOpenGL"][1]["funcname"] = "ImGui_ImplGlfw_InitForOpenGL" -defs["ImGui_ImplGlfw_InitForOpenGL"][1]["location"] = "imgui_impl_glfw" +defs["ImGui_ImplGlfw_InitForOpenGL"][1]["location"] = "imgui_impl_glfw:24" defs["ImGui_ImplGlfw_InitForOpenGL"][1]["ov_cimguiname"] = "ImGui_ImplGlfw_InitForOpenGL" defs["ImGui_ImplGlfw_InitForOpenGL"][1]["ret"] = "bool" defs["ImGui_ImplGlfw_InitForOpenGL"][1]["signature"] = "(GLFWwindow*,bool)" @@ -56,7 +56,7 @@ defs["ImGui_ImplGlfw_InitForVulkan"][1]["call_args"] = "(window,install_callback defs["ImGui_ImplGlfw_InitForVulkan"][1]["cimguiname"] = "ImGui_ImplGlfw_InitForVulkan" defs["ImGui_ImplGlfw_InitForVulkan"][1]["defaults"] = {} defs["ImGui_ImplGlfw_InitForVulkan"][1]["funcname"] = "ImGui_ImplGlfw_InitForVulkan" -defs["ImGui_ImplGlfw_InitForVulkan"][1]["location"] = "imgui_impl_glfw" +defs["ImGui_ImplGlfw_InitForVulkan"][1]["location"] = "imgui_impl_glfw:25" defs["ImGui_ImplGlfw_InitForVulkan"][1]["ov_cimguiname"] = "ImGui_ImplGlfw_InitForVulkan" defs["ImGui_ImplGlfw_InitForVulkan"][1]["ret"] = "bool" defs["ImGui_ImplGlfw_InitForVulkan"][1]["signature"] = "(GLFWwindow*,bool)" @@ -86,7 +86,7 @@ defs["ImGui_ImplGlfw_KeyCallback"][1]["call_args"] = "(window,key,scancode,actio defs["ImGui_ImplGlfw_KeyCallback"][1]["cimguiname"] = "ImGui_ImplGlfw_KeyCallback" defs["ImGui_ImplGlfw_KeyCallback"][1]["defaults"] = {} defs["ImGui_ImplGlfw_KeyCallback"][1]["funcname"] = "ImGui_ImplGlfw_KeyCallback" -defs["ImGui_ImplGlfw_KeyCallback"][1]["location"] = "imgui_impl_glfw" +defs["ImGui_ImplGlfw_KeyCallback"][1]["location"] = "imgui_impl_glfw:34" defs["ImGui_ImplGlfw_KeyCallback"][1]["ov_cimguiname"] = "ImGui_ImplGlfw_KeyCallback" defs["ImGui_ImplGlfw_KeyCallback"][1]["ret"] = "void" defs["ImGui_ImplGlfw_KeyCallback"][1]["signature"] = "(GLFWwindow*,int,int,int,int)" @@ -113,7 +113,7 @@ defs["ImGui_ImplGlfw_MouseButtonCallback"][1]["call_args"] = "(window,button,act defs["ImGui_ImplGlfw_MouseButtonCallback"][1]["cimguiname"] = "ImGui_ImplGlfw_MouseButtonCallback" defs["ImGui_ImplGlfw_MouseButtonCallback"][1]["defaults"] = {} defs["ImGui_ImplGlfw_MouseButtonCallback"][1]["funcname"] = "ImGui_ImplGlfw_MouseButtonCallback" -defs["ImGui_ImplGlfw_MouseButtonCallback"][1]["location"] = "imgui_impl_glfw" +defs["ImGui_ImplGlfw_MouseButtonCallback"][1]["location"] = "imgui_impl_glfw:32" defs["ImGui_ImplGlfw_MouseButtonCallback"][1]["ov_cimguiname"] = "ImGui_ImplGlfw_MouseButtonCallback" defs["ImGui_ImplGlfw_MouseButtonCallback"][1]["ret"] = "void" defs["ImGui_ImplGlfw_MouseButtonCallback"][1]["signature"] = "(GLFWwindow*,int,int,int)" @@ -128,7 +128,7 @@ defs["ImGui_ImplGlfw_NewFrame"][1]["call_args"] = "()" defs["ImGui_ImplGlfw_NewFrame"][1]["cimguiname"] = "ImGui_ImplGlfw_NewFrame" defs["ImGui_ImplGlfw_NewFrame"][1]["defaults"] = {} defs["ImGui_ImplGlfw_NewFrame"][1]["funcname"] = "ImGui_ImplGlfw_NewFrame" -defs["ImGui_ImplGlfw_NewFrame"][1]["location"] = "imgui_impl_glfw" +defs["ImGui_ImplGlfw_NewFrame"][1]["location"] = "imgui_impl_glfw:27" defs["ImGui_ImplGlfw_NewFrame"][1]["ov_cimguiname"] = "ImGui_ImplGlfw_NewFrame" defs["ImGui_ImplGlfw_NewFrame"][1]["ret"] = "void" defs["ImGui_ImplGlfw_NewFrame"][1]["signature"] = "()" @@ -152,7 +152,7 @@ defs["ImGui_ImplGlfw_ScrollCallback"][1]["call_args"] = "(window,xoffset,yoffset defs["ImGui_ImplGlfw_ScrollCallback"][1]["cimguiname"] = "ImGui_ImplGlfw_ScrollCallback" defs["ImGui_ImplGlfw_ScrollCallback"][1]["defaults"] = {} defs["ImGui_ImplGlfw_ScrollCallback"][1]["funcname"] = "ImGui_ImplGlfw_ScrollCallback" -defs["ImGui_ImplGlfw_ScrollCallback"][1]["location"] = "imgui_impl_glfw" +defs["ImGui_ImplGlfw_ScrollCallback"][1]["location"] = "imgui_impl_glfw:33" defs["ImGui_ImplGlfw_ScrollCallback"][1]["ov_cimguiname"] = "ImGui_ImplGlfw_ScrollCallback" defs["ImGui_ImplGlfw_ScrollCallback"][1]["ret"] = "void" defs["ImGui_ImplGlfw_ScrollCallback"][1]["signature"] = "(GLFWwindow*,double,double)" @@ -167,7 +167,7 @@ defs["ImGui_ImplGlfw_Shutdown"][1]["call_args"] = "()" defs["ImGui_ImplGlfw_Shutdown"][1]["cimguiname"] = "ImGui_ImplGlfw_Shutdown" defs["ImGui_ImplGlfw_Shutdown"][1]["defaults"] = {} defs["ImGui_ImplGlfw_Shutdown"][1]["funcname"] = "ImGui_ImplGlfw_Shutdown" -defs["ImGui_ImplGlfw_Shutdown"][1]["location"] = "imgui_impl_glfw" +defs["ImGui_ImplGlfw_Shutdown"][1]["location"] = "imgui_impl_glfw:26" defs["ImGui_ImplGlfw_Shutdown"][1]["ov_cimguiname"] = "ImGui_ImplGlfw_Shutdown" defs["ImGui_ImplGlfw_Shutdown"][1]["ret"] = "void" defs["ImGui_ImplGlfw_Shutdown"][1]["signature"] = "()" @@ -182,7 +182,7 @@ defs["ImGui_ImplOpenGL2_CreateDeviceObjects"][1]["call_args"] = "()" defs["ImGui_ImplOpenGL2_CreateDeviceObjects"][1]["cimguiname"] = "ImGui_ImplOpenGL2_CreateDeviceObjects" defs["ImGui_ImplOpenGL2_CreateDeviceObjects"][1]["defaults"] = {} defs["ImGui_ImplOpenGL2_CreateDeviceObjects"][1]["funcname"] = "ImGui_ImplOpenGL2_CreateDeviceObjects" -defs["ImGui_ImplOpenGL2_CreateDeviceObjects"][1]["location"] = "imgui_impl_opengl2" +defs["ImGui_ImplOpenGL2_CreateDeviceObjects"][1]["location"] = "imgui_impl_opengl2:30" defs["ImGui_ImplOpenGL2_CreateDeviceObjects"][1]["ov_cimguiname"] = "ImGui_ImplOpenGL2_CreateDeviceObjects" defs["ImGui_ImplOpenGL2_CreateDeviceObjects"][1]["ret"] = "bool" defs["ImGui_ImplOpenGL2_CreateDeviceObjects"][1]["signature"] = "()" @@ -197,7 +197,7 @@ defs["ImGui_ImplOpenGL2_CreateFontsTexture"][1]["call_args"] = "()" defs["ImGui_ImplOpenGL2_CreateFontsTexture"][1]["cimguiname"] = "ImGui_ImplOpenGL2_CreateFontsTexture" defs["ImGui_ImplOpenGL2_CreateFontsTexture"][1]["defaults"] = {} defs["ImGui_ImplOpenGL2_CreateFontsTexture"][1]["funcname"] = "ImGui_ImplOpenGL2_CreateFontsTexture" -defs["ImGui_ImplOpenGL2_CreateFontsTexture"][1]["location"] = "imgui_impl_opengl2" +defs["ImGui_ImplOpenGL2_CreateFontsTexture"][1]["location"] = "imgui_impl_opengl2:28" defs["ImGui_ImplOpenGL2_CreateFontsTexture"][1]["ov_cimguiname"] = "ImGui_ImplOpenGL2_CreateFontsTexture" defs["ImGui_ImplOpenGL2_CreateFontsTexture"][1]["ret"] = "bool" defs["ImGui_ImplOpenGL2_CreateFontsTexture"][1]["signature"] = "()" @@ -212,7 +212,7 @@ defs["ImGui_ImplOpenGL2_DestroyDeviceObjects"][1]["call_args"] = "()" defs["ImGui_ImplOpenGL2_DestroyDeviceObjects"][1]["cimguiname"] = "ImGui_ImplOpenGL2_DestroyDeviceObjects" defs["ImGui_ImplOpenGL2_DestroyDeviceObjects"][1]["defaults"] = {} defs["ImGui_ImplOpenGL2_DestroyDeviceObjects"][1]["funcname"] = "ImGui_ImplOpenGL2_DestroyDeviceObjects" -defs["ImGui_ImplOpenGL2_DestroyDeviceObjects"][1]["location"] = "imgui_impl_opengl2" +defs["ImGui_ImplOpenGL2_DestroyDeviceObjects"][1]["location"] = "imgui_impl_opengl2:31" defs["ImGui_ImplOpenGL2_DestroyDeviceObjects"][1]["ov_cimguiname"] = "ImGui_ImplOpenGL2_DestroyDeviceObjects" defs["ImGui_ImplOpenGL2_DestroyDeviceObjects"][1]["ret"] = "void" defs["ImGui_ImplOpenGL2_DestroyDeviceObjects"][1]["signature"] = "()" @@ -227,7 +227,7 @@ defs["ImGui_ImplOpenGL2_DestroyFontsTexture"][1]["call_args"] = "()" defs["ImGui_ImplOpenGL2_DestroyFontsTexture"][1]["cimguiname"] = "ImGui_ImplOpenGL2_DestroyFontsTexture" defs["ImGui_ImplOpenGL2_DestroyFontsTexture"][1]["defaults"] = {} defs["ImGui_ImplOpenGL2_DestroyFontsTexture"][1]["funcname"] = "ImGui_ImplOpenGL2_DestroyFontsTexture" -defs["ImGui_ImplOpenGL2_DestroyFontsTexture"][1]["location"] = "imgui_impl_opengl2" +defs["ImGui_ImplOpenGL2_DestroyFontsTexture"][1]["location"] = "imgui_impl_opengl2:29" defs["ImGui_ImplOpenGL2_DestroyFontsTexture"][1]["ov_cimguiname"] = "ImGui_ImplOpenGL2_DestroyFontsTexture" defs["ImGui_ImplOpenGL2_DestroyFontsTexture"][1]["ret"] = "void" defs["ImGui_ImplOpenGL2_DestroyFontsTexture"][1]["signature"] = "()" @@ -242,7 +242,7 @@ defs["ImGui_ImplOpenGL2_Init"][1]["call_args"] = "()" defs["ImGui_ImplOpenGL2_Init"][1]["cimguiname"] = "ImGui_ImplOpenGL2_Init" defs["ImGui_ImplOpenGL2_Init"][1]["defaults"] = {} defs["ImGui_ImplOpenGL2_Init"][1]["funcname"] = "ImGui_ImplOpenGL2_Init" -defs["ImGui_ImplOpenGL2_Init"][1]["location"] = "imgui_impl_opengl2" +defs["ImGui_ImplOpenGL2_Init"][1]["location"] = "imgui_impl_opengl2:22" defs["ImGui_ImplOpenGL2_Init"][1]["ov_cimguiname"] = "ImGui_ImplOpenGL2_Init" defs["ImGui_ImplOpenGL2_Init"][1]["ret"] = "bool" defs["ImGui_ImplOpenGL2_Init"][1]["signature"] = "()" @@ -257,7 +257,7 @@ defs["ImGui_ImplOpenGL2_NewFrame"][1]["call_args"] = "()" defs["ImGui_ImplOpenGL2_NewFrame"][1]["cimguiname"] = "ImGui_ImplOpenGL2_NewFrame" defs["ImGui_ImplOpenGL2_NewFrame"][1]["defaults"] = {} defs["ImGui_ImplOpenGL2_NewFrame"][1]["funcname"] = "ImGui_ImplOpenGL2_NewFrame" -defs["ImGui_ImplOpenGL2_NewFrame"][1]["location"] = "imgui_impl_opengl2" +defs["ImGui_ImplOpenGL2_NewFrame"][1]["location"] = "imgui_impl_opengl2:24" defs["ImGui_ImplOpenGL2_NewFrame"][1]["ov_cimguiname"] = "ImGui_ImplOpenGL2_NewFrame" defs["ImGui_ImplOpenGL2_NewFrame"][1]["ret"] = "void" defs["ImGui_ImplOpenGL2_NewFrame"][1]["signature"] = "()" @@ -275,7 +275,7 @@ defs["ImGui_ImplOpenGL2_RenderDrawData"][1]["call_args"] = "(draw_data)" defs["ImGui_ImplOpenGL2_RenderDrawData"][1]["cimguiname"] = "ImGui_ImplOpenGL2_RenderDrawData" defs["ImGui_ImplOpenGL2_RenderDrawData"][1]["defaults"] = {} defs["ImGui_ImplOpenGL2_RenderDrawData"][1]["funcname"] = "ImGui_ImplOpenGL2_RenderDrawData" -defs["ImGui_ImplOpenGL2_RenderDrawData"][1]["location"] = "imgui_impl_opengl2" +defs["ImGui_ImplOpenGL2_RenderDrawData"][1]["location"] = "imgui_impl_opengl2:25" defs["ImGui_ImplOpenGL2_RenderDrawData"][1]["ov_cimguiname"] = "ImGui_ImplOpenGL2_RenderDrawData" defs["ImGui_ImplOpenGL2_RenderDrawData"][1]["ret"] = "void" defs["ImGui_ImplOpenGL2_RenderDrawData"][1]["signature"] = "(ImDrawData*)" @@ -290,7 +290,7 @@ defs["ImGui_ImplOpenGL2_Shutdown"][1]["call_args"] = "()" defs["ImGui_ImplOpenGL2_Shutdown"][1]["cimguiname"] = "ImGui_ImplOpenGL2_Shutdown" defs["ImGui_ImplOpenGL2_Shutdown"][1]["defaults"] = {} defs["ImGui_ImplOpenGL2_Shutdown"][1]["funcname"] = "ImGui_ImplOpenGL2_Shutdown" -defs["ImGui_ImplOpenGL2_Shutdown"][1]["location"] = "imgui_impl_opengl2" +defs["ImGui_ImplOpenGL2_Shutdown"][1]["location"] = "imgui_impl_opengl2:23" defs["ImGui_ImplOpenGL2_Shutdown"][1]["ov_cimguiname"] = "ImGui_ImplOpenGL2_Shutdown" defs["ImGui_ImplOpenGL2_Shutdown"][1]["ret"] = "void" defs["ImGui_ImplOpenGL2_Shutdown"][1]["signature"] = "()" @@ -305,7 +305,7 @@ defs["ImGui_ImplOpenGL3_CreateDeviceObjects"][1]["call_args"] = "()" defs["ImGui_ImplOpenGL3_CreateDeviceObjects"][1]["cimguiname"] = "ImGui_ImplOpenGL3_CreateDeviceObjects" defs["ImGui_ImplOpenGL3_CreateDeviceObjects"][1]["defaults"] = {} defs["ImGui_ImplOpenGL3_CreateDeviceObjects"][1]["funcname"] = "ImGui_ImplOpenGL3_CreateDeviceObjects" -defs["ImGui_ImplOpenGL3_CreateDeviceObjects"][1]["location"] = "imgui_impl_opengl3" +defs["ImGui_ImplOpenGL3_CreateDeviceObjects"][1]["location"] = "imgui_impl_opengl3:36" defs["ImGui_ImplOpenGL3_CreateDeviceObjects"][1]["ov_cimguiname"] = "ImGui_ImplOpenGL3_CreateDeviceObjects" defs["ImGui_ImplOpenGL3_CreateDeviceObjects"][1]["ret"] = "bool" defs["ImGui_ImplOpenGL3_CreateDeviceObjects"][1]["signature"] = "()" @@ -320,7 +320,7 @@ defs["ImGui_ImplOpenGL3_CreateFontsTexture"][1]["call_args"] = "()" defs["ImGui_ImplOpenGL3_CreateFontsTexture"][1]["cimguiname"] = "ImGui_ImplOpenGL3_CreateFontsTexture" defs["ImGui_ImplOpenGL3_CreateFontsTexture"][1]["defaults"] = {} defs["ImGui_ImplOpenGL3_CreateFontsTexture"][1]["funcname"] = "ImGui_ImplOpenGL3_CreateFontsTexture" -defs["ImGui_ImplOpenGL3_CreateFontsTexture"][1]["location"] = "imgui_impl_opengl3" +defs["ImGui_ImplOpenGL3_CreateFontsTexture"][1]["location"] = "imgui_impl_opengl3:34" defs["ImGui_ImplOpenGL3_CreateFontsTexture"][1]["ov_cimguiname"] = "ImGui_ImplOpenGL3_CreateFontsTexture" defs["ImGui_ImplOpenGL3_CreateFontsTexture"][1]["ret"] = "bool" defs["ImGui_ImplOpenGL3_CreateFontsTexture"][1]["signature"] = "()" @@ -335,7 +335,7 @@ defs["ImGui_ImplOpenGL3_DestroyDeviceObjects"][1]["call_args"] = "()" defs["ImGui_ImplOpenGL3_DestroyDeviceObjects"][1]["cimguiname"] = "ImGui_ImplOpenGL3_DestroyDeviceObjects" defs["ImGui_ImplOpenGL3_DestroyDeviceObjects"][1]["defaults"] = {} defs["ImGui_ImplOpenGL3_DestroyDeviceObjects"][1]["funcname"] = "ImGui_ImplOpenGL3_DestroyDeviceObjects" -defs["ImGui_ImplOpenGL3_DestroyDeviceObjects"][1]["location"] = "imgui_impl_opengl3" +defs["ImGui_ImplOpenGL3_DestroyDeviceObjects"][1]["location"] = "imgui_impl_opengl3:37" defs["ImGui_ImplOpenGL3_DestroyDeviceObjects"][1]["ov_cimguiname"] = "ImGui_ImplOpenGL3_DestroyDeviceObjects" defs["ImGui_ImplOpenGL3_DestroyDeviceObjects"][1]["ret"] = "void" defs["ImGui_ImplOpenGL3_DestroyDeviceObjects"][1]["signature"] = "()" @@ -350,7 +350,7 @@ defs["ImGui_ImplOpenGL3_DestroyFontsTexture"][1]["call_args"] = "()" defs["ImGui_ImplOpenGL3_DestroyFontsTexture"][1]["cimguiname"] = "ImGui_ImplOpenGL3_DestroyFontsTexture" defs["ImGui_ImplOpenGL3_DestroyFontsTexture"][1]["defaults"] = {} defs["ImGui_ImplOpenGL3_DestroyFontsTexture"][1]["funcname"] = "ImGui_ImplOpenGL3_DestroyFontsTexture" -defs["ImGui_ImplOpenGL3_DestroyFontsTexture"][1]["location"] = "imgui_impl_opengl3" +defs["ImGui_ImplOpenGL3_DestroyFontsTexture"][1]["location"] = "imgui_impl_opengl3:35" defs["ImGui_ImplOpenGL3_DestroyFontsTexture"][1]["ov_cimguiname"] = "ImGui_ImplOpenGL3_DestroyFontsTexture" defs["ImGui_ImplOpenGL3_DestroyFontsTexture"][1]["ret"] = "void" defs["ImGui_ImplOpenGL3_DestroyFontsTexture"][1]["signature"] = "()" @@ -369,7 +369,7 @@ defs["ImGui_ImplOpenGL3_Init"][1]["cimguiname"] = "ImGui_ImplOpenGL3_Init" defs["ImGui_ImplOpenGL3_Init"][1]["defaults"] = {} defs["ImGui_ImplOpenGL3_Init"][1]["defaults"]["glsl_version"] = "((void*)0)" defs["ImGui_ImplOpenGL3_Init"][1]["funcname"] = "ImGui_ImplOpenGL3_Init" -defs["ImGui_ImplOpenGL3_Init"][1]["location"] = "imgui_impl_opengl3" +defs["ImGui_ImplOpenGL3_Init"][1]["location"] = "imgui_impl_opengl3:28" defs["ImGui_ImplOpenGL3_Init"][1]["ov_cimguiname"] = "ImGui_ImplOpenGL3_Init" defs["ImGui_ImplOpenGL3_Init"][1]["ret"] = "bool" defs["ImGui_ImplOpenGL3_Init"][1]["signature"] = "(const char*)" @@ -384,7 +384,7 @@ defs["ImGui_ImplOpenGL3_NewFrame"][1]["call_args"] = "()" defs["ImGui_ImplOpenGL3_NewFrame"][1]["cimguiname"] = "ImGui_ImplOpenGL3_NewFrame" defs["ImGui_ImplOpenGL3_NewFrame"][1]["defaults"] = {} defs["ImGui_ImplOpenGL3_NewFrame"][1]["funcname"] = "ImGui_ImplOpenGL3_NewFrame" -defs["ImGui_ImplOpenGL3_NewFrame"][1]["location"] = "imgui_impl_opengl3" +defs["ImGui_ImplOpenGL3_NewFrame"][1]["location"] = "imgui_impl_opengl3:30" defs["ImGui_ImplOpenGL3_NewFrame"][1]["ov_cimguiname"] = "ImGui_ImplOpenGL3_NewFrame" defs["ImGui_ImplOpenGL3_NewFrame"][1]["ret"] = "void" defs["ImGui_ImplOpenGL3_NewFrame"][1]["signature"] = "()" @@ -402,7 +402,7 @@ defs["ImGui_ImplOpenGL3_RenderDrawData"][1]["call_args"] = "(draw_data)" defs["ImGui_ImplOpenGL3_RenderDrawData"][1]["cimguiname"] = "ImGui_ImplOpenGL3_RenderDrawData" defs["ImGui_ImplOpenGL3_RenderDrawData"][1]["defaults"] = {} defs["ImGui_ImplOpenGL3_RenderDrawData"][1]["funcname"] = "ImGui_ImplOpenGL3_RenderDrawData" -defs["ImGui_ImplOpenGL3_RenderDrawData"][1]["location"] = "imgui_impl_opengl3" +defs["ImGui_ImplOpenGL3_RenderDrawData"][1]["location"] = "imgui_impl_opengl3:31" defs["ImGui_ImplOpenGL3_RenderDrawData"][1]["ov_cimguiname"] = "ImGui_ImplOpenGL3_RenderDrawData" defs["ImGui_ImplOpenGL3_RenderDrawData"][1]["ret"] = "void" defs["ImGui_ImplOpenGL3_RenderDrawData"][1]["signature"] = "(ImDrawData*)" @@ -417,7 +417,7 @@ defs["ImGui_ImplOpenGL3_Shutdown"][1]["call_args"] = "()" defs["ImGui_ImplOpenGL3_Shutdown"][1]["cimguiname"] = "ImGui_ImplOpenGL3_Shutdown" defs["ImGui_ImplOpenGL3_Shutdown"][1]["defaults"] = {} defs["ImGui_ImplOpenGL3_Shutdown"][1]["funcname"] = "ImGui_ImplOpenGL3_Shutdown" -defs["ImGui_ImplOpenGL3_Shutdown"][1]["location"] = "imgui_impl_opengl3" +defs["ImGui_ImplOpenGL3_Shutdown"][1]["location"] = "imgui_impl_opengl3:29" defs["ImGui_ImplOpenGL3_Shutdown"][1]["ov_cimguiname"] = "ImGui_ImplOpenGL3_Shutdown" defs["ImGui_ImplOpenGL3_Shutdown"][1]["ret"] = "void" defs["ImGui_ImplOpenGL3_Shutdown"][1]["signature"] = "()" @@ -435,7 +435,7 @@ defs["ImGui_ImplSDL2_InitForD3D"][1]["call_args"] = "(window)" defs["ImGui_ImplSDL2_InitForD3D"][1]["cimguiname"] = "ImGui_ImplSDL2_InitForD3D" defs["ImGui_ImplSDL2_InitForD3D"][1]["defaults"] = {} defs["ImGui_ImplSDL2_InitForD3D"][1]["funcname"] = "ImGui_ImplSDL2_InitForD3D" -defs["ImGui_ImplSDL2_InitForD3D"][1]["location"] = "imgui_impl_sdl" +defs["ImGui_ImplSDL2_InitForD3D"][1]["location"] = "imgui_impl_sdl:25" defs["ImGui_ImplSDL2_InitForD3D"][1]["ov_cimguiname"] = "ImGui_ImplSDL2_InitForD3D" defs["ImGui_ImplSDL2_InitForD3D"][1]["ret"] = "bool" defs["ImGui_ImplSDL2_InitForD3D"][1]["signature"] = "(SDL_Window*)" @@ -453,7 +453,7 @@ defs["ImGui_ImplSDL2_InitForMetal"][1]["call_args"] = "(window)" defs["ImGui_ImplSDL2_InitForMetal"][1]["cimguiname"] = "ImGui_ImplSDL2_InitForMetal" defs["ImGui_ImplSDL2_InitForMetal"][1]["defaults"] = {} defs["ImGui_ImplSDL2_InitForMetal"][1]["funcname"] = "ImGui_ImplSDL2_InitForMetal" -defs["ImGui_ImplSDL2_InitForMetal"][1]["location"] = "imgui_impl_sdl" +defs["ImGui_ImplSDL2_InitForMetal"][1]["location"] = "imgui_impl_sdl:26" defs["ImGui_ImplSDL2_InitForMetal"][1]["ov_cimguiname"] = "ImGui_ImplSDL2_InitForMetal" defs["ImGui_ImplSDL2_InitForMetal"][1]["ret"] = "bool" defs["ImGui_ImplSDL2_InitForMetal"][1]["signature"] = "(SDL_Window*)" @@ -474,7 +474,7 @@ defs["ImGui_ImplSDL2_InitForOpenGL"][1]["call_args"] = "(window,sdl_gl_context)" defs["ImGui_ImplSDL2_InitForOpenGL"][1]["cimguiname"] = "ImGui_ImplSDL2_InitForOpenGL" defs["ImGui_ImplSDL2_InitForOpenGL"][1]["defaults"] = {} defs["ImGui_ImplSDL2_InitForOpenGL"][1]["funcname"] = "ImGui_ImplSDL2_InitForOpenGL" -defs["ImGui_ImplSDL2_InitForOpenGL"][1]["location"] = "imgui_impl_sdl" +defs["ImGui_ImplSDL2_InitForOpenGL"][1]["location"] = "imgui_impl_sdl:23" defs["ImGui_ImplSDL2_InitForOpenGL"][1]["ov_cimguiname"] = "ImGui_ImplSDL2_InitForOpenGL" defs["ImGui_ImplSDL2_InitForOpenGL"][1]["ret"] = "bool" defs["ImGui_ImplSDL2_InitForOpenGL"][1]["signature"] = "(SDL_Window*,void*)" @@ -492,7 +492,7 @@ defs["ImGui_ImplSDL2_InitForVulkan"][1]["call_args"] = "(window)" defs["ImGui_ImplSDL2_InitForVulkan"][1]["cimguiname"] = "ImGui_ImplSDL2_InitForVulkan" defs["ImGui_ImplSDL2_InitForVulkan"][1]["defaults"] = {} defs["ImGui_ImplSDL2_InitForVulkan"][1]["funcname"] = "ImGui_ImplSDL2_InitForVulkan" -defs["ImGui_ImplSDL2_InitForVulkan"][1]["location"] = "imgui_impl_sdl" +defs["ImGui_ImplSDL2_InitForVulkan"][1]["location"] = "imgui_impl_sdl:24" defs["ImGui_ImplSDL2_InitForVulkan"][1]["ov_cimguiname"] = "ImGui_ImplSDL2_InitForVulkan" defs["ImGui_ImplSDL2_InitForVulkan"][1]["ret"] = "bool" defs["ImGui_ImplSDL2_InitForVulkan"][1]["signature"] = "(SDL_Window*)" @@ -510,7 +510,7 @@ defs["ImGui_ImplSDL2_NewFrame"][1]["call_args"] = "(window)" defs["ImGui_ImplSDL2_NewFrame"][1]["cimguiname"] = "ImGui_ImplSDL2_NewFrame" defs["ImGui_ImplSDL2_NewFrame"][1]["defaults"] = {} defs["ImGui_ImplSDL2_NewFrame"][1]["funcname"] = "ImGui_ImplSDL2_NewFrame" -defs["ImGui_ImplSDL2_NewFrame"][1]["location"] = "imgui_impl_sdl" +defs["ImGui_ImplSDL2_NewFrame"][1]["location"] = "imgui_impl_sdl:28" defs["ImGui_ImplSDL2_NewFrame"][1]["ov_cimguiname"] = "ImGui_ImplSDL2_NewFrame" defs["ImGui_ImplSDL2_NewFrame"][1]["ret"] = "void" defs["ImGui_ImplSDL2_NewFrame"][1]["signature"] = "(SDL_Window*)" @@ -528,7 +528,7 @@ defs["ImGui_ImplSDL2_ProcessEvent"][1]["call_args"] = "(event)" defs["ImGui_ImplSDL2_ProcessEvent"][1]["cimguiname"] = "ImGui_ImplSDL2_ProcessEvent" defs["ImGui_ImplSDL2_ProcessEvent"][1]["defaults"] = {} defs["ImGui_ImplSDL2_ProcessEvent"][1]["funcname"] = "ImGui_ImplSDL2_ProcessEvent" -defs["ImGui_ImplSDL2_ProcessEvent"][1]["location"] = "imgui_impl_sdl" +defs["ImGui_ImplSDL2_ProcessEvent"][1]["location"] = "imgui_impl_sdl:29" defs["ImGui_ImplSDL2_ProcessEvent"][1]["ov_cimguiname"] = "ImGui_ImplSDL2_ProcessEvent" defs["ImGui_ImplSDL2_ProcessEvent"][1]["ret"] = "bool" defs["ImGui_ImplSDL2_ProcessEvent"][1]["signature"] = "(const SDL_Event*)" @@ -543,7 +543,7 @@ defs["ImGui_ImplSDL2_Shutdown"][1]["call_args"] = "()" defs["ImGui_ImplSDL2_Shutdown"][1]["cimguiname"] = "ImGui_ImplSDL2_Shutdown" defs["ImGui_ImplSDL2_Shutdown"][1]["defaults"] = {} defs["ImGui_ImplSDL2_Shutdown"][1]["funcname"] = "ImGui_ImplSDL2_Shutdown" -defs["ImGui_ImplSDL2_Shutdown"][1]["location"] = "imgui_impl_sdl" +defs["ImGui_ImplSDL2_Shutdown"][1]["location"] = "imgui_impl_sdl:27" defs["ImGui_ImplSDL2_Shutdown"][1]["ov_cimguiname"] = "ImGui_ImplSDL2_Shutdown" defs["ImGui_ImplSDL2_Shutdown"][1]["ret"] = "void" defs["ImGui_ImplSDL2_Shutdown"][1]["signature"] = "()" diff --git a/generator/output/structs_and_enums.json b/generator/output/structs_and_enums.json index 66d3c20..ea19b5a 100644 --- a/generator/output/structs_and_enums.json +++ b/generator/output/structs_and_enums.json @@ -2609,122 +2609,122 @@ ] }, "locations": { - "ImBitVector": "internal", - "ImColor": "imgui", - "ImDrawChannel": "imgui", - "ImDrawCmd": "imgui", - "ImDrawCornerFlags_": "imgui", - "ImDrawData": "imgui", - "ImDrawDataBuilder": "internal", - "ImDrawList": "imgui", - "ImDrawListFlags_": "imgui", - "ImDrawListSharedData": "internal", - "ImDrawListSplitter": "imgui", - "ImDrawVert": "imgui", - "ImFont": "imgui", - "ImFontAtlas": "imgui", - "ImFontAtlasCustomRect": "imgui", - "ImFontAtlasFlags_": "imgui", - "ImFontConfig": "imgui", - "ImFontGlyph": "imgui", - "ImFontGlyphRangesBuilder": "imgui", - "ImGuiAxis": "internal", - "ImGuiBackendFlags_": "imgui", - "ImGuiButtonFlagsPrivate_": "internal", - "ImGuiButtonFlags_": "imgui", - "ImGuiCol_": "imgui", - "ImGuiColorEditFlags_": "imgui", - "ImGuiColorMod": "internal", - "ImGuiColumnData": "internal", - "ImGuiColumns": "internal", - "ImGuiColumnsFlags_": "internal", - "ImGuiComboFlags_": "imgui", - "ImGuiCond_": "imgui", - "ImGuiConfigFlags_": "imgui", - "ImGuiContext": "internal", - "ImGuiDataTypeInfo": "internal", - "ImGuiDataTypePrivate_": "internal", - "ImGuiDataTypeTempStorage": "internal", - "ImGuiDataType_": "imgui", - "ImGuiDir_": "imgui", - "ImGuiDragDropFlags_": "imgui", - "ImGuiFocusedFlags_": "imgui", - "ImGuiGroupData": "internal", - "ImGuiHoveredFlags_": "imgui", - "ImGuiIO": "imgui", - "ImGuiInputReadMode": "internal", - "ImGuiInputSource": "internal", - "ImGuiInputTextCallbackData": "imgui", - "ImGuiInputTextFlags_": "imgui", - "ImGuiInputTextState": "internal", - "ImGuiItemFlags_": "internal", - "ImGuiItemStatusFlags_": "internal", - "ImGuiKeyModFlags_": "imgui", - "ImGuiKey_": "imgui", - "ImGuiLastItemDataBackup": "internal", - "ImGuiLayoutType_": "internal", - "ImGuiListClipper": "imgui", - "ImGuiLogType": "internal", - "ImGuiMenuColumns": "internal", - "ImGuiMouseButton_": "imgui", - "ImGuiMouseCursor_": "imgui", - "ImGuiNavDirSourceFlags_": "internal", - "ImGuiNavForward": "internal", - "ImGuiNavHighlightFlags_": "internal", - "ImGuiNavInput_": "imgui", - "ImGuiNavLayer": "internal", - "ImGuiNavMoveFlags_": "internal", - "ImGuiNavMoveResult": "internal", - "ImGuiNextItemData": "internal", - "ImGuiNextItemDataFlags_": "internal", - "ImGuiNextWindowData": "internal", - "ImGuiNextWindowDataFlags_": "internal", - "ImGuiOnceUponAFrame": "imgui", - "ImGuiPayload": "imgui", - "ImGuiPlotType": "internal", - "ImGuiPopupData": "internal", - "ImGuiPopupFlags_": "imgui", - "ImGuiPopupPositionPolicy": "internal", - "ImGuiPtrOrIndex": "internal", - "ImGuiSelectableFlagsPrivate_": "internal", - "ImGuiSelectableFlags_": "imgui", - "ImGuiSeparatorFlags_": "internal", - "ImGuiSettingsHandler": "internal", - "ImGuiShrinkWidthItem": "internal", - "ImGuiSizeCallbackData": "imgui", - "ImGuiSliderFlagsPrivate_": "internal", - "ImGuiSliderFlags_": "imgui", - "ImGuiStorage": "imgui", - "ImGuiStoragePair": "imgui", - "ImGuiStyle": "imgui", - "ImGuiStyleMod": "internal", - "ImGuiStyleVar_": "imgui", - "ImGuiTabBar": "internal", - "ImGuiTabBarFlagsPrivate_": "internal", - "ImGuiTabBarFlags_": "imgui", - "ImGuiTabItem": "internal", - "ImGuiTabItemFlagsPrivate_": "internal", - "ImGuiTabItemFlags_": "imgui", - "ImGuiTextBuffer": "imgui", - "ImGuiTextFilter": "imgui", - "ImGuiTextFlags_": "internal", - "ImGuiTextRange": "imgui", - "ImGuiTooltipFlags_": "internal", - "ImGuiTreeNodeFlagsPrivate_": "internal", - "ImGuiTreeNodeFlags_": "imgui", - "ImGuiWindow": "internal", - "ImGuiWindowFlags_": "imgui", - "ImGuiWindowSettings": "internal", - "ImGuiWindowTempData": "internal", - "ImRect": "internal", - "ImVec1": "internal", - "ImVec2": "imgui", - "ImVec2ih": "internal", - "ImVec4": "imgui", - "STB_TexteditState": "internal", - "StbTexteditRow": "internal", - "StbUndoRecord": "internal", - "StbUndoState": "internal" + "ImBitVector": "imgui_internal:468", + "ImColor": "imgui:1927", + "ImDrawChannel": "imgui:2013", + "ImDrawCmd": "imgui:1976", + "ImDrawCornerFlags_": "imgui:2036", + "ImDrawData": "imgui:2183", + "ImDrawDataBuilder": "imgui_internal:561", + "ImDrawList": "imgui:2069", + "ImDrawListFlags_": "imgui:2052", + "ImDrawListSharedData": "imgui_internal:542", + "ImDrawListSplitter": "imgui:2021", + "ImDrawVert": "imgui:1998", + "ImFont": "imgui:2394", + "ImFontAtlas": "imgui:2299", + "ImFontAtlasCustomRect": "imgui:2261", + "ImFontAtlasFlags_": "imgui:2274", + "ImFontConfig": "imgui:2206", + "ImFontGlyph": "imgui:2235", + "ImFontGlyphRangesBuilder": "imgui:2246", + "ImGuiAxis": "imgui_internal:697", + "ImGuiBackendFlags_": "imgui:1124", + "ImGuiButtonFlagsPrivate_": "imgui_internal:612", + "ImGuiButtonFlags_": "imgui:1235", + "ImGuiCol_": "imgui:1134", + "ImGuiColorEditFlags_": "imgui:1248", + "ImGuiColorMod": "imgui_internal:802", + "ImGuiColumnData": "imgui_internal:993", + "ImGuiColumns": "imgui_internal:1003", + "ImGuiColumnsFlags_": "imgui_internal:982", + "ImGuiComboFlags_": "imgui:917", + "ImGuiCond_": "imgui:1340", + "ImGuiConfigFlags_": "imgui:1108", + "ImGuiContext": "imgui_internal:1100", + "ImGuiDataTypeInfo": "imgui_internal:786", + "ImGuiDataTypePrivate_": "imgui_internal:794", + "ImGuiDataTypeTempStorage": "imgui_internal:780", + "ImGuiDataType_": "imgui:1008", + "ImGuiDir_": "imgui:1024", + "ImGuiDragDropFlags_": "imgui:986", + "ImGuiFocusedFlags_": "imgui:958", + "ImGuiGroupData": "imgui_internal:819", + "ImGuiHoveredFlags_": "imgui:970", + "ImGuiIO": "imgui:1493", + "ImGuiInputReadMode": "imgui_internal:721", + "ImGuiInputSource": "imgui_internal:710", + "ImGuiInputTextCallbackData": "imgui:1642", + "ImGuiInputTextFlags_": "imgui:835", + "ImGuiInputTextState": "imgui_internal:847", + "ImGuiItemFlags_": "imgui_internal:576", + "ImGuiItemStatusFlags_": "imgui_internal:591", + "ImGuiKeyModFlags_": "imgui:1063", + "ImGuiKey_": "imgui:1035", + "ImGuiLastItemDataBackup": "imgui_internal:1672", + "ImGuiLayoutType_": "imgui_internal:681", + "ImGuiListClipper": "imgui:1883", + "ImGuiLogType": "imgui_internal:687", + "ImGuiMenuColumns": "imgui_internal:833", + "ImGuiMouseButton_": "imgui:1307", + "ImGuiMouseCursor_": "imgui:1317", + "ImGuiNavDirSourceFlags_": "imgui_internal:740", + "ImGuiNavForward": "imgui_internal:760", + "ImGuiNavHighlightFlags_": "imgui_internal:731", + "ImGuiNavInput_": "imgui:1076", + "ImGuiNavLayer": "imgui_internal:767", + "ImGuiNavMoveFlags_": "imgui_internal:748", + "ImGuiNavMoveResult": "imgui_internal:894", + "ImGuiNextItemData": "imgui_internal:951", + "ImGuiNextItemDataFlags_": "imgui_internal:944", + "ImGuiNextWindowData": "imgui_internal:922", + "ImGuiNextWindowDataFlags_": "imgui_internal:908", + "ImGuiOnceUponAFrame": "imgui:1765", + "ImGuiPayload": "imgui:1680", + "ImGuiPlotType": "imgui_internal:704", + "ImGuiPopupData": "imgui_internal:881", + "ImGuiPopupFlags_": "imgui:890", + "ImGuiPopupPositionPolicy": "imgui_internal:774", + "ImGuiPtrOrIndex": "imgui_internal:969", + "ImGuiSelectableFlagsPrivate_": "imgui_internal:642", + "ImGuiSelectableFlags_": "imgui:906", + "ImGuiSeparatorFlags_": "imgui_internal:659", + "ImGuiSettingsHandler": "imgui_internal:1081", + "ImGuiShrinkWidthItem": "imgui_internal:963", + "ImGuiSizeCallbackData": "imgui:1671", + "ImGuiSliderFlagsPrivate_": "imgui_internal:635", + "ImGuiSliderFlags_": "imgui:1295", + "ImGuiStorage": "imgui:1827", + "ImGuiStoragePair": "imgui:1830", + "ImGuiStyle": "imgui:1441", + "ImGuiStyleMod": "imgui_internal:809", + "ImGuiStyleVar_": "imgui:1200", + "ImGuiTabBar": "imgui_internal:1719", + "ImGuiTabBarFlagsPrivate_": "imgui_internal:1689", + "ImGuiTabBarFlags_": "imgui:931", + "ImGuiTabItem": "imgui_internal:1703", + "ImGuiTabItemFlagsPrivate_": "imgui_internal:1697", + "ImGuiTabItemFlags_": "imgui:947", + "ImGuiTextBuffer": "imgui:1800", + "ImGuiTextFilter": "imgui:1773", + "ImGuiTextFlags_": "imgui_internal:667", + "ImGuiTextRange": "imgui:1783", + "ImGuiTooltipFlags_": "imgui_internal:673", + "ImGuiTreeNodeFlagsPrivate_": "imgui_internal:654", + "ImGuiTreeNodeFlags_": "imgui:863", + "ImGuiWindow": "imgui_internal:1563", + "ImGuiWindowFlags_": "imgui:794", + "ImGuiWindowSettings": "imgui_internal:1069", + "ImGuiWindowTempData": "imgui_internal:1471", + "ImRect": "imgui_internal:415", + "ImVec1": "imgui_internal:397", + "ImVec2": "imgui:211", + "ImVec2ih": "imgui_internal:405", + "ImVec4": "imgui:224", + "STB_TexteditState": "imstb_textedit:319", + "StbTexteditRow": "imstb_textedit:362", + "StbUndoRecord": "imstb_textedit:301", + "StbUndoState": "imstb_textedit:310" }, "structs": { "ImBitVector": [ diff --git a/generator/output/structs_and_enums.lua b/generator/output/structs_and_enums.lua index c11f582..d651185 100644 --- a/generator/output/structs_and_enums.lua +++ b/generator/output/structs_and_enums.lua @@ -2053,122 +2053,122 @@ defs["enums"]["ImGuiWindowFlags_"][30]["calc_value"] = 268435456 defs["enums"]["ImGuiWindowFlags_"][30]["name"] = "ImGuiWindowFlags_ChildMenu" defs["enums"]["ImGuiWindowFlags_"][30]["value"] = "1 << 28" defs["locations"] = {} -defs["locations"]["ImBitVector"] = "internal" -defs["locations"]["ImColor"] = "imgui" -defs["locations"]["ImDrawChannel"] = "imgui" -defs["locations"]["ImDrawCmd"] = "imgui" -defs["locations"]["ImDrawCornerFlags_"] = "imgui" -defs["locations"]["ImDrawData"] = "imgui" -defs["locations"]["ImDrawDataBuilder"] = "internal" -defs["locations"]["ImDrawList"] = "imgui" -defs["locations"]["ImDrawListFlags_"] = "imgui" -defs["locations"]["ImDrawListSharedData"] = "internal" -defs["locations"]["ImDrawListSplitter"] = "imgui" -defs["locations"]["ImDrawVert"] = "imgui" -defs["locations"]["ImFont"] = "imgui" -defs["locations"]["ImFontAtlas"] = "imgui" -defs["locations"]["ImFontAtlasCustomRect"] = "imgui" -defs["locations"]["ImFontAtlasFlags_"] = "imgui" -defs["locations"]["ImFontConfig"] = "imgui" -defs["locations"]["ImFontGlyph"] = "imgui" -defs["locations"]["ImFontGlyphRangesBuilder"] = "imgui" -defs["locations"]["ImGuiAxis"] = "internal" -defs["locations"]["ImGuiBackendFlags_"] = "imgui" -defs["locations"]["ImGuiButtonFlagsPrivate_"] = "internal" -defs["locations"]["ImGuiButtonFlags_"] = "imgui" -defs["locations"]["ImGuiCol_"] = "imgui" -defs["locations"]["ImGuiColorEditFlags_"] = "imgui" -defs["locations"]["ImGuiColorMod"] = "internal" -defs["locations"]["ImGuiColumnData"] = "internal" -defs["locations"]["ImGuiColumns"] = "internal" -defs["locations"]["ImGuiColumnsFlags_"] = "internal" -defs["locations"]["ImGuiComboFlags_"] = "imgui" -defs["locations"]["ImGuiCond_"] = "imgui" -defs["locations"]["ImGuiConfigFlags_"] = "imgui" -defs["locations"]["ImGuiContext"] = "internal" -defs["locations"]["ImGuiDataTypeInfo"] = "internal" -defs["locations"]["ImGuiDataTypePrivate_"] = "internal" -defs["locations"]["ImGuiDataTypeTempStorage"] = "internal" -defs["locations"]["ImGuiDataType_"] = "imgui" -defs["locations"]["ImGuiDir_"] = "imgui" -defs["locations"]["ImGuiDragDropFlags_"] = "imgui" -defs["locations"]["ImGuiFocusedFlags_"] = "imgui" -defs["locations"]["ImGuiGroupData"] = "internal" -defs["locations"]["ImGuiHoveredFlags_"] = "imgui" -defs["locations"]["ImGuiIO"] = "imgui" -defs["locations"]["ImGuiInputReadMode"] = "internal" -defs["locations"]["ImGuiInputSource"] = "internal" -defs["locations"]["ImGuiInputTextCallbackData"] = "imgui" -defs["locations"]["ImGuiInputTextFlags_"] = "imgui" -defs["locations"]["ImGuiInputTextState"] = "internal" -defs["locations"]["ImGuiItemFlags_"] = "internal" -defs["locations"]["ImGuiItemStatusFlags_"] = "internal" -defs["locations"]["ImGuiKeyModFlags_"] = "imgui" -defs["locations"]["ImGuiKey_"] = "imgui" -defs["locations"]["ImGuiLastItemDataBackup"] = "internal" -defs["locations"]["ImGuiLayoutType_"] = "internal" -defs["locations"]["ImGuiListClipper"] = "imgui" -defs["locations"]["ImGuiLogType"] = "internal" -defs["locations"]["ImGuiMenuColumns"] = "internal" -defs["locations"]["ImGuiMouseButton_"] = "imgui" -defs["locations"]["ImGuiMouseCursor_"] = "imgui" -defs["locations"]["ImGuiNavDirSourceFlags_"] = "internal" -defs["locations"]["ImGuiNavForward"] = "internal" -defs["locations"]["ImGuiNavHighlightFlags_"] = "internal" -defs["locations"]["ImGuiNavInput_"] = "imgui" -defs["locations"]["ImGuiNavLayer"] = "internal" -defs["locations"]["ImGuiNavMoveFlags_"] = "internal" -defs["locations"]["ImGuiNavMoveResult"] = "internal" -defs["locations"]["ImGuiNextItemData"] = "internal" -defs["locations"]["ImGuiNextItemDataFlags_"] = "internal" -defs["locations"]["ImGuiNextWindowData"] = "internal" -defs["locations"]["ImGuiNextWindowDataFlags_"] = "internal" -defs["locations"]["ImGuiOnceUponAFrame"] = "imgui" -defs["locations"]["ImGuiPayload"] = "imgui" -defs["locations"]["ImGuiPlotType"] = "internal" -defs["locations"]["ImGuiPopupData"] = "internal" -defs["locations"]["ImGuiPopupFlags_"] = "imgui" -defs["locations"]["ImGuiPopupPositionPolicy"] = "internal" -defs["locations"]["ImGuiPtrOrIndex"] = "internal" -defs["locations"]["ImGuiSelectableFlagsPrivate_"] = "internal" -defs["locations"]["ImGuiSelectableFlags_"] = "imgui" -defs["locations"]["ImGuiSeparatorFlags_"] = "internal" -defs["locations"]["ImGuiSettingsHandler"] = "internal" -defs["locations"]["ImGuiShrinkWidthItem"] = "internal" -defs["locations"]["ImGuiSizeCallbackData"] = "imgui" -defs["locations"]["ImGuiSliderFlagsPrivate_"] = "internal" -defs["locations"]["ImGuiSliderFlags_"] = "imgui" -defs["locations"]["ImGuiStorage"] = "imgui" -defs["locations"]["ImGuiStoragePair"] = "imgui" -defs["locations"]["ImGuiStyle"] = "imgui" -defs["locations"]["ImGuiStyleMod"] = "internal" -defs["locations"]["ImGuiStyleVar_"] = "imgui" -defs["locations"]["ImGuiTabBar"] = "internal" -defs["locations"]["ImGuiTabBarFlagsPrivate_"] = "internal" -defs["locations"]["ImGuiTabBarFlags_"] = "imgui" -defs["locations"]["ImGuiTabItem"] = "internal" -defs["locations"]["ImGuiTabItemFlagsPrivate_"] = "internal" -defs["locations"]["ImGuiTabItemFlags_"] = "imgui" -defs["locations"]["ImGuiTextBuffer"] = "imgui" -defs["locations"]["ImGuiTextFilter"] = "imgui" -defs["locations"]["ImGuiTextFlags_"] = "internal" -defs["locations"]["ImGuiTextRange"] = "imgui" -defs["locations"]["ImGuiTooltipFlags_"] = "internal" -defs["locations"]["ImGuiTreeNodeFlagsPrivate_"] = "internal" -defs["locations"]["ImGuiTreeNodeFlags_"] = "imgui" -defs["locations"]["ImGuiWindow"] = "internal" -defs["locations"]["ImGuiWindowFlags_"] = "imgui" -defs["locations"]["ImGuiWindowSettings"] = "internal" -defs["locations"]["ImGuiWindowTempData"] = "internal" -defs["locations"]["ImRect"] = "internal" -defs["locations"]["ImVec1"] = "internal" -defs["locations"]["ImVec2"] = "imgui" -defs["locations"]["ImVec2ih"] = "internal" -defs["locations"]["ImVec4"] = "imgui" -defs["locations"]["STB_TexteditState"] = "internal" -defs["locations"]["StbTexteditRow"] = "internal" -defs["locations"]["StbUndoRecord"] = "internal" -defs["locations"]["StbUndoState"] = "internal" +defs["locations"]["ImBitVector"] = "imgui_internal:468" +defs["locations"]["ImColor"] = "imgui:1927" +defs["locations"]["ImDrawChannel"] = "imgui:2013" +defs["locations"]["ImDrawCmd"] = "imgui:1976" +defs["locations"]["ImDrawCornerFlags_"] = "imgui:2036" +defs["locations"]["ImDrawData"] = "imgui:2183" +defs["locations"]["ImDrawDataBuilder"] = "imgui_internal:561" +defs["locations"]["ImDrawList"] = "imgui:2069" +defs["locations"]["ImDrawListFlags_"] = "imgui:2052" +defs["locations"]["ImDrawListSharedData"] = "imgui_internal:542" +defs["locations"]["ImDrawListSplitter"] = "imgui:2021" +defs["locations"]["ImDrawVert"] = "imgui:1998" +defs["locations"]["ImFont"] = "imgui:2394" +defs["locations"]["ImFontAtlas"] = "imgui:2299" +defs["locations"]["ImFontAtlasCustomRect"] = "imgui:2261" +defs["locations"]["ImFontAtlasFlags_"] = "imgui:2274" +defs["locations"]["ImFontConfig"] = "imgui:2206" +defs["locations"]["ImFontGlyph"] = "imgui:2235" +defs["locations"]["ImFontGlyphRangesBuilder"] = "imgui:2246" +defs["locations"]["ImGuiAxis"] = "imgui_internal:697" +defs["locations"]["ImGuiBackendFlags_"] = "imgui:1124" +defs["locations"]["ImGuiButtonFlagsPrivate_"] = "imgui_internal:612" +defs["locations"]["ImGuiButtonFlags_"] = "imgui:1235" +defs["locations"]["ImGuiCol_"] = "imgui:1134" +defs["locations"]["ImGuiColorEditFlags_"] = "imgui:1248" +defs["locations"]["ImGuiColorMod"] = "imgui_internal:802" +defs["locations"]["ImGuiColumnData"] = "imgui_internal:993" +defs["locations"]["ImGuiColumns"] = "imgui_internal:1003" +defs["locations"]["ImGuiColumnsFlags_"] = "imgui_internal:982" +defs["locations"]["ImGuiComboFlags_"] = "imgui:917" +defs["locations"]["ImGuiCond_"] = "imgui:1340" +defs["locations"]["ImGuiConfigFlags_"] = "imgui:1108" +defs["locations"]["ImGuiContext"] = "imgui_internal:1100" +defs["locations"]["ImGuiDataTypeInfo"] = "imgui_internal:786" +defs["locations"]["ImGuiDataTypePrivate_"] = "imgui_internal:794" +defs["locations"]["ImGuiDataTypeTempStorage"] = "imgui_internal:780" +defs["locations"]["ImGuiDataType_"] = "imgui:1008" +defs["locations"]["ImGuiDir_"] = "imgui:1024" +defs["locations"]["ImGuiDragDropFlags_"] = "imgui:986" +defs["locations"]["ImGuiFocusedFlags_"] = "imgui:958" +defs["locations"]["ImGuiGroupData"] = "imgui_internal:819" +defs["locations"]["ImGuiHoveredFlags_"] = "imgui:970" +defs["locations"]["ImGuiIO"] = "imgui:1493" +defs["locations"]["ImGuiInputReadMode"] = "imgui_internal:721" +defs["locations"]["ImGuiInputSource"] = "imgui_internal:710" +defs["locations"]["ImGuiInputTextCallbackData"] = "imgui:1642" +defs["locations"]["ImGuiInputTextFlags_"] = "imgui:835" +defs["locations"]["ImGuiInputTextState"] = "imgui_internal:847" +defs["locations"]["ImGuiItemFlags_"] = "imgui_internal:576" +defs["locations"]["ImGuiItemStatusFlags_"] = "imgui_internal:591" +defs["locations"]["ImGuiKeyModFlags_"] = "imgui:1063" +defs["locations"]["ImGuiKey_"] = "imgui:1035" +defs["locations"]["ImGuiLastItemDataBackup"] = "imgui_internal:1672" +defs["locations"]["ImGuiLayoutType_"] = "imgui_internal:681" +defs["locations"]["ImGuiListClipper"] = "imgui:1883" +defs["locations"]["ImGuiLogType"] = "imgui_internal:687" +defs["locations"]["ImGuiMenuColumns"] = "imgui_internal:833" +defs["locations"]["ImGuiMouseButton_"] = "imgui:1307" +defs["locations"]["ImGuiMouseCursor_"] = "imgui:1317" +defs["locations"]["ImGuiNavDirSourceFlags_"] = "imgui_internal:740" +defs["locations"]["ImGuiNavForward"] = "imgui_internal:760" +defs["locations"]["ImGuiNavHighlightFlags_"] = "imgui_internal:731" +defs["locations"]["ImGuiNavInput_"] = "imgui:1076" +defs["locations"]["ImGuiNavLayer"] = "imgui_internal:767" +defs["locations"]["ImGuiNavMoveFlags_"] = "imgui_internal:748" +defs["locations"]["ImGuiNavMoveResult"] = "imgui_internal:894" +defs["locations"]["ImGuiNextItemData"] = "imgui_internal:951" +defs["locations"]["ImGuiNextItemDataFlags_"] = "imgui_internal:944" +defs["locations"]["ImGuiNextWindowData"] = "imgui_internal:922" +defs["locations"]["ImGuiNextWindowDataFlags_"] = "imgui_internal:908" +defs["locations"]["ImGuiOnceUponAFrame"] = "imgui:1765" +defs["locations"]["ImGuiPayload"] = "imgui:1680" +defs["locations"]["ImGuiPlotType"] = "imgui_internal:704" +defs["locations"]["ImGuiPopupData"] = "imgui_internal:881" +defs["locations"]["ImGuiPopupFlags_"] = "imgui:890" +defs["locations"]["ImGuiPopupPositionPolicy"] = "imgui_internal:774" +defs["locations"]["ImGuiPtrOrIndex"] = "imgui_internal:969" +defs["locations"]["ImGuiSelectableFlagsPrivate_"] = "imgui_internal:642" +defs["locations"]["ImGuiSelectableFlags_"] = "imgui:906" +defs["locations"]["ImGuiSeparatorFlags_"] = "imgui_internal:659" +defs["locations"]["ImGuiSettingsHandler"] = "imgui_internal:1081" +defs["locations"]["ImGuiShrinkWidthItem"] = "imgui_internal:963" +defs["locations"]["ImGuiSizeCallbackData"] = "imgui:1671" +defs["locations"]["ImGuiSliderFlagsPrivate_"] = "imgui_internal:635" +defs["locations"]["ImGuiSliderFlags_"] = "imgui:1295" +defs["locations"]["ImGuiStorage"] = "imgui:1827" +defs["locations"]["ImGuiStoragePair"] = "imgui:1830" +defs["locations"]["ImGuiStyle"] = "imgui:1441" +defs["locations"]["ImGuiStyleMod"] = "imgui_internal:809" +defs["locations"]["ImGuiStyleVar_"] = "imgui:1200" +defs["locations"]["ImGuiTabBar"] = "imgui_internal:1719" +defs["locations"]["ImGuiTabBarFlagsPrivate_"] = "imgui_internal:1689" +defs["locations"]["ImGuiTabBarFlags_"] = "imgui:931" +defs["locations"]["ImGuiTabItem"] = "imgui_internal:1703" +defs["locations"]["ImGuiTabItemFlagsPrivate_"] = "imgui_internal:1697" +defs["locations"]["ImGuiTabItemFlags_"] = "imgui:947" +defs["locations"]["ImGuiTextBuffer"] = "imgui:1800" +defs["locations"]["ImGuiTextFilter"] = "imgui:1773" +defs["locations"]["ImGuiTextFlags_"] = "imgui_internal:667" +defs["locations"]["ImGuiTextRange"] = "imgui:1783" +defs["locations"]["ImGuiTooltipFlags_"] = "imgui_internal:673" +defs["locations"]["ImGuiTreeNodeFlagsPrivate_"] = "imgui_internal:654" +defs["locations"]["ImGuiTreeNodeFlags_"] = "imgui:863" +defs["locations"]["ImGuiWindow"] = "imgui_internal:1563" +defs["locations"]["ImGuiWindowFlags_"] = "imgui:794" +defs["locations"]["ImGuiWindowSettings"] = "imgui_internal:1069" +defs["locations"]["ImGuiWindowTempData"] = "imgui_internal:1471" +defs["locations"]["ImRect"] = "imgui_internal:415" +defs["locations"]["ImVec1"] = "imgui_internal:397" +defs["locations"]["ImVec2"] = "imgui:211" +defs["locations"]["ImVec2ih"] = "imgui_internal:405" +defs["locations"]["ImVec4"] = "imgui:224" +defs["locations"]["STB_TexteditState"] = "imstb_textedit:319" +defs["locations"]["StbTexteditRow"] = "imstb_textedit:362" +defs["locations"]["StbUndoRecord"] = "imstb_textedit:301" +defs["locations"]["StbUndoState"] = "imstb_textedit:310" defs["structs"] = {} defs["structs"]["ImBitVector"] = {} defs["structs"]["ImBitVector"][1] = {}