Access Dear ImGUI internal API from odin-imgui

Greetings all,

I’m using Dear ImGUI and have a use case that requires me to call ImGui::DockBuilderGetCentralNode(), but the internal API does not appear to be available via odin-imgui.

Does anyone know how I can get imgui_internal.h to be included in the bindings generation process? Thank you.

one of the easier (but slightly lengthy) ways would be to do all of this in a c++ project, where odin is compiled as a static library and then linked to the c++ executable

whatever methods you don’t have access to, implement in c++ and expose for interoperability via c-abi

Thanks, that’s worth considering in the long term if I can’t find anything else out. I am still hopeful that an improvement to odin-imgui can be made to include the missing header.

yeah i fully agree, even i need the custom docking setup functionality