windows.h

G

Guest

I'm trying to compile an existing program and I can't seem to find the
"windows.h" file. Where can I get this?
 
V

Vladimir Nesterovsky

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>
 
C

Carl Daniel [VC++ MVP]

Steve Holle said:
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
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top