Thanks. I'm on the road visiting clients this week. When I get back to my office I'll see if I can put together a small project that demonstrates the problem.
Are you confirming that it should only list the actual functions in the code?
Note that the prototypes that are showing up in the list are static ones at the top of the source file and not prototypes from an #include file.
Here is an example list from one of my project files:
#define IPTIMEOUT
ShiftIPDataBitIn(void);
ShiftIPDataBitOut(void);
CheckIPColonReceived(void);
CheckIPCRSent(void);
UpdateIPTimer(void);
TerminateIPTx(void);
StartIPSend(void)
IPComms(void)
ShiftIPDataBitIn(void)
ShiftIPDataBitOut(void)
CheckIPColonReceived(void)
CheckIPCRSent(void)
UpdateIPTimer(void)
TerminateIPTx(void)
...
etc. with normal function headers
Thanks,
Bill