Error al compilar

Guillermo
29 de Octubre del 2004
cuando kiero compilar me sale esto
--------------------Configuration: GFG - Win32 Debug--------------------
Compiling...
gfg.cpp
c:documents and settingscyber guifegoescritorioGFGGFG065includes.h(18) : fatal error C1083: Cannot open include file: 'windns.h': No such file or directory
Error executing cl.exe.

GFG.exe - 1 error(s), 0 warning(s)

ana
29 de Octubre del 2004
BUG: C1083, "Compiler Cannot Open Intermediate File" Error
Last reviewed: July 17, 1997
Article ID: Q102159
1.00 1.50 WINDOWS kbtool kbbuglist
The information in this article applies to:

The Microsoft C/C++ Compiler (CL.EXE), included with:

- Microsoft Visual C++ for Windows, version 1.0 and 1.5




SYMPTOMS
When the compiler command line includes the /Fp<file>.pch option switch to specify the name of a pre-compiled header file and the command line does not include the /Yc or /Yu option, the compiler generates the following message:


fatal error C1083: Cannot open compiler intermediate file: <tmpfile>


RESOLUTION
To work around this error, specify the /Yc compiler option switch to create a pre-compiled header file.



STATUS
Microsoft has confirmed this to be a problem in the Microsoft products listed above. We are researching this problem and will post new information here in the Microsoft Knowledge Base as it becomes available.

This problem does not occur in Microsoft C/C++ 32-bit compiler version 8.0, included with Visual C++ 32-bit Edition version 1.0.



MORE INFORMATION
The following code example demonstrates this problem.



Sample Code - TEST.C

/*
* Compiler options needed: /Fptest.pch to demonstrate error
*/

#include <stdio.h>

void main()

{
printf("Hello, worldn");

}

///////////////////////////////////////////////////////////////////////

Asegúrate también que tienes el fichero de cabecera precompilada

#include "stdafx.h"

El primero de las includes. Y haz una compilación completa del todo el proyecto.

Espero que te sirva de algo esta pequeña ayuda