Re: C SOurce file in VC++
Hi,
VC is missing the header file for which he wants to use the precompiled header file. Sorry, I can't explain it very good in German, so in English is even more worse.
But I can tell you how to prevent it. Either include stdafx.h at the top of your .c file, or tell the compiler in the project settings (menu Project->Settings or Alt-F7) not to use precompiled headers for this file. In the file list you need to select the file, change to the C/C++ tab, choose "Precompiled Headers" in the combo box, and select the radio button "Not using precompiled headers".
HTH
Martin
Re: C SOurce file in VC++