C ヘッダー・ファイルをインポートしてメッセージ・モデルを作成するときの問題または制約事項を示します。
struct mymessage_tag {
int a;
struct { // anonymous structure...
int b1;
struct myembstruct_tag { // ...containing a structure
int c1;
} c;
} b;
};