With reference to Graham's post: FWIW I've never actually seen the "replace defines with const int" message with resource.h files - although some others (previously defined at same location) can be a pain.
Regardless, if a particular PC-Lint message is getting in the way of spotting what you are looking for it is a simple matter to turn it off using -e in your options.lnt file. It's also worth being aware of the -w option, which allows you to globally set the warning level (e.g. -w0 +e766 turns off everything except message 766).
For unused symbols and declarations, you'll want to look out for messages such as 755 (Information -- global macro not referenced), 758 (Information -- global enum not referenced), 769 (Information -- global enumeration constant not referenced) and 1714 (Information -- Member function not referenced). Remember that these are suppressed in single file analysis, so you'll need to run whole project analysis to see them.