bradfordelliott / shorte

The documentation language
0 stars 0 forks source link

C/C++: Parsing of typedef'd structures and pointers #104

Open bradfordelliott opened 10 years ago

bradfordelliott commented 10 years ago

This structure doesn't get parsed very well. It gets interpreted as *cs_t100_otu_term_stats_p instead of cs_t100_otu_term_stats_t.

/**
 * This structure contains the otn termination statistics for a OTN facility
 * terminated by the T100.
 */
typedef struct {

/** TBD */
cs_uint64 lofstat_stat ; 
} cs_t100_otu_term_stats_t, *cs_t100_otu_term_stats_p;