windows.h

  • Thread starter Thread starter Guest
  • Start date Start date
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?
 
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>
 
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
 
That was exactly what I was looking for. Thanks for the quick response.
 

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

Back
Top