How can I tell Doxygen to use the first declaration in this code:
typedef struct _decor_extents {
int left;
int right;
int top;
int bottom;
} decor_extents_t;
Cheers, Kris
How can I tell Doxygen to use the first declaration in this code:
typedef struct _decor_extents {
int left;
int right;
int top;
int bottom;
} decor_extents_t;
Cheers, Kris
Do you want Doygen to use struct _decor_extents, rather than decor_extents_t?
If so, don't use a typedef. In other words, remove the typedef and the type name (decor_extents_t).
This does mean that any variable of this type will have to be declared as struct _decor_extents, rather than decor_extents_t.
Out of interest, why do you want to do this?