SetAllocatorFunctions

Memory Allocators - Those functions are not reliant on the current context. - DLL users: heaps and globals are not shared across DLL boundaries! You will need to call SetCurrentContext() + SetAllocatorFunctions() for each static/DLL boundary you are calling from. Read "Context and Memory Allocators" section of imgui.cpp for more details.

pure @nogc nothrow @trusted
void
SetAllocatorFunctions
(
ImGuiMemAllocFunc alloc_func
,
ImGuiMemFreeFunc free_func
,
scope void* user_data
)

Meta