Problems or restrictions when you import a C header file to create a message model.
struct mymessage_tag {
int a;
struct { // anonymous structure...
int b1;
struct myembstruct_tag { // ...containing a structure
int c1;
} c;
} b;
};