// Global functions void foo(void); BOOL MyBooler(char *Laughter); int foo2(int foo2parameter);
and have "Display comments from source files when available" checked (VAX-Options -> Text Editor -> C/C++).
Hover over the first declaration gives you
void foo(void);
// Global functions
in the tooltip...
But this works only for the first 2 Lines! Hovering over int foo2(int foo2parameter); gives you this:
int foo2(int foo2parameter);
Notice the missing "Display comments from source files although available"
Is reproducable here, only the first 2 lines of declarations after a comment are shown with this comment (doesn't matter if it's a function- or variable-declaration).