views:

71

answers:

2

When I compile my program it says that it can't find atlbase.h. Am I missing some SDK or something?

+1  A: 

That appears to be a part of the Windows Platform SDK.

You should search your computer for the file. That will tell you if you're missing it.

Shmoopty
It was included in older versions of the Windows Platform SDK, but it is (apparently intentionally) omitted from current ones.
jamesdlin
+3  A: 

Microsoft ATL (Active Template Library), which includes the header atlbase.h is included with the Windows 2003 SDK, but it is not included with any newer Windows SDK release. It is also included with Professional editions of Visual Studio.

birryree
which one of the three files should i download
Ramiz Toma
`PSDK-amd64.exe` if you are running 64-bit Windows on an x86-64 CPU. `PSDK-ia64.exe` if you are running Windows on Itanium. `PSDK-x86.exe` if you are running 32-bit Windows.
birryree