mirror of
https://github.com/Drezil/imgui.git
synced 2024-11-26 13:37:00 +00:00
Added comment on MemFreeFn as suggested by #119
This commit is contained in:
parent
6777145853
commit
56bf9ea067
2
imgui.h
2
imgui.h
@ -523,7 +523,7 @@ struct ImGuiIO
|
|||||||
const char* (*GetClipboardTextFn)();
|
const char* (*GetClipboardTextFn)();
|
||||||
void (*SetClipboardTextFn)(const char* text);
|
void (*SetClipboardTextFn)(const char* text);
|
||||||
|
|
||||||
// Optional: override memory allocations (default to posix malloc/realloc/free)
|
// Optional: override memory allocations (default to posix malloc/realloc/free). MemFreeFn() may be called with a NULL pointer.
|
||||||
void* (*MemAllocFn)(size_t sz);
|
void* (*MemAllocFn)(size_t sz);
|
||||||
void* (*MemReallocFn)(void* ptr, size_t sz);
|
void* (*MemReallocFn)(void* ptr, size_t sz);
|
||||||
void (*MemFreeFn)(void* ptr);
|
void (*MemFreeFn)(void* ptr);
|
||||||
|
Loading…
Reference in New Issue
Block a user