It's posible to switch nimrod compiller for generate C++ struct and function with readable name for convenient embeding in C++ project
TMyObject {.final, pure, acyclic.} = object
iField: int
for example instead
struct tmyobject56004 {
NI Ifield;
};
using
struct TMObject {
int32_t iField;
}