例如,請考量下列原始檔:
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;
};