I have a piece of code that contains some macros which expand to function declarations only when a specific preprocessor macro is defined. Is it possible to define this macro so i can see these declarations in the Symbols list. Example:
#ifdef __FOO
#define __DECLARE_FUNCTION( function_prototype ) function_prototype;
#else
#define __DECLARE_FUNCTION( function_prototype )
#endif