[Doxygen-users] Cross Referencing of C Global Variables
Brought to you by:
dimitri
From: Roy L. <roy...@ya...> - 2002-02-18 19:12:43
|
Hi, I'm trying to figure out if the following is a bug or just badly configured! Anyone got any suggestions? The global variable "not_referenced" in the header file is not referenced correctly in doxygen output. However the "is_referenced" variable is correctly cross referenced. I have a global variable declared in a Header file ****test.h**** /** * This is a test variable */ extern const UINT8 not_referenced; ***test.c**** /** * this is another test variable */ extern const UINT8 is_referenced; /** * main func */ int main (void) { is_referenced = not_referenced; } Cheers, Roy __________________________________________________ Do You Yahoo!? Yahoo! Sports - Coverage of the 2002 Olympic Games http://sports.yahoo.com |