In Visual Studio 2003 using pure C, old-style function declarations do not show as global member i.e. void func(blah) int blah;{...}
This shows as a global member in the members dropdown:
void func(int blah)
{
...
}
This compiles, but old-style does not appear in the global members dropdown:
void func(blah)
int blah;
{
...
}
I am trying to use the new 'Calling Graph' functionality to analyse code, but as most of our legacy code uses the old-style function parameters, those functions are not recognized are not shown as Global Members, and therefore do not appear in the 'Calling Graph'.
Is there any way to let the "call graph" analysis process old-style function declarations correctly?