struct perf_log_block
{
int cassette_mounts;
};
struct perf_log_block blk_pos[ FIVE ];
another_block a_block[ FIVE ];
typedef struct _vanillaThing
{
char field1;
} vanillaThing_t, *vanillaThing_p, **vanillaThing_h;
typedef struct
{
int field4;
} obMethod_1_subType_2_t, *obMethod_1_subType_2_p,
**obMethod_1_subType_2_h;
기타 탭에서 어떤 것도 지정하지 않으면 구조는 다음 그림에 표시된 것처럼 유형으로 모델링되지 않습니다.

another_block %s[ FIVE ]
와일드카드 기호(*)를 유형 목록에 추가하여 모든 구조가 유형에 맵핑되는 경우 결과는 다음과 같습니다.

struct %s
{
int cassette_mounts;
};
perf_log_block %s[ FIVE]
another_block %s[ FIVE ]
struct %s
{
char field1;
};