Hi Experts,
I see in slickedit, the inactive functions be shown in auto preview (symbol list), any one know how to hide them?
e.g. there are two files, one is a.h, another is a.cpp.
//a.h
extern int hello();
//a.cpp
#include "a.h"
#ifdef TEST
int hello() { return 0; }
#else
int hello() { return 1; }
#endif
Thanks,
Lu Su