If you do not want certain files to be included in your Doxygen output, you can use the EXCLUDE_PATTERNS directive. One project I'm working on uses
EXCLUDE_PATTERNS = */test/*
to avoid including our unit test classes in Doxygen output. If your auto-generated COM files have any pattern for them, you can exclude them this way.
source share