Possible to make Quick Info tooltips to show a #defined function?
For example, using the Win32 API function MessageBox().
It is #defined'd as MessageBoxW() depending on some circumstances, so the Quick Info tooltip will show
#define MessageBox MessageBoxW
when you hold your mouse over it.
It there a way for the tooltip to show MessageBoxW's header, when you hold your mouse over MessageBox(), instead of the #define line ?

