[Doxygen-users] typedef struct, and searching archive
Brought to you by:
dimitri
From: Rob B <row...@ya...> - 2001-12-22 23:59:34
|
Hi All: I am just starting to use doxygen for the first time, and I have a question. I tried to search the mail archive (to see if the question was asked before), I went to: http://www.geocrawler.com/lists/3/SourceForge/11668/0/ to see the archive, but there was no search button. My question is: I am using a C compiler (not C++). Oftentimes, to reduce typing, I do the following: /// myStruct documentation typedef struct myStruct_s { struct body } myStruct_t; Then, in another structure, I may reference the original structure as myStruct_t instead of "struct myStruct_s", such as: /// struct2 documentation struct struct2 { myStruct_t structMember; } When the documentation is generated, on the page for struct2, I would like a cross-reference to myStruct_t when the structMember is documented. However, doxygen is only generating documentation for struct myStruct_s, and not myStruct_t. How to I get the documentation to cross-reference myStruct_t, and link it to the documentation page for myStruct_s? Thank you, Rob __________________________________________________ Do You Yahoo!? Send your FREE holiday greetings online! http://greetings.yahoo.com |