From 6ddccdc1def9d66e569a8d816d910d98ff5e3bde Mon Sep 17 00:00:00 2001 From: Victor Bombi Date: Tue, 7 Jul 2020 09:59:06 +0200 Subject: [PATCH] update readme for locations in struct_and_enums --- README.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 1eaea72..81071e5 100644 --- a/README.md +++ b/README.md @@ -63,7 +63,7 @@ Notes: * 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) ### structs_and_enums description -* Is is a collection with two items: +* Is is a collection with three items: * under key enums we get the enums collection in which each key is the enum tagname and the value is an array of the ordered values represented as a collection with keys * name : the name of this enum value * value : the C string @@ -74,6 +74,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. # 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`