> I'm trying to compile an existing program and I can't seem to find the
> "windows.h" file. Where can I get this?
You can try
#include <windows.h>
--
Vladimir Nesterovsky
e-mail: vladimir@nesterovsky-bros.com
home: http://www.nesterovsky-bros.com
> I'm trying to compile an existing program and I can't seem to find the
> "windows.h" file. Where can I get this?
windows.h is part of the Platform SDK.
I'm guessing that you're using VC++ 2005 Express Edition BEta, which does
not include a copy of the Platform SDK (all versions of Visual Studio do).
You can download the Platform SDK from msdn.microsoft.com/platformsdk
-cd
Steve Holle - 29 Dec 2004 20:13 GMT
That was exactly what I was looking for. Thanks for the quick response.
> > I'm trying to compile an existing program and I can't seem to find the
> > "windows.h" file. Where can I get this?
[quoted text clipped - 7 lines]
>
> -cd