Suppose I have one program that I compile and generate a preprocessed output file, as described at this page:
http://msdn.microsoft.com/en-us/library/8z9z0bx6%28v=vs.80%29.aspx
It generates a .i file as an output. Anyone know where I can find an example of properly using this output file in another program?
Preprocessed files are files which contain all pre-processor substitutions in place. You should just compile them as other source files.