Tagged Questions

4
votes
3answers
6k views

WindowsSdkDir is not set correctly in Visual Studio 2008?

I'm attempting to build some C++ code that requires the Windows 7.0 SDK header files and libraries. My VC++ Directories is set to: $(VCInstallDir)include $(VCInstallDir)atlmfc\include ...
1
vote
2answers
365 views

windows mobile 6.5 sdk don't run under windows 7?

I'm on windows 7 and I try to install visual studio 2008 with the windows mobile 6 standard SDK in order to develop application for windows mobile 6.1/6.5. I've installed visual studio 2008 and it ...
1
vote
3answers
827 views

Unresolved external symbols in compiling 32 bit application in Windows 64

So I am trying to compile legacy app from 32 bit to 64 bit.. I re-compiled all of the libs it used and made it look into WIN SDK6.0A x64 bit for libs.. I am using: Visual Studio Professional ...
0
votes
0answers
54 views

VC++ won't build 64-bit samples from windows SDK samples

I might soon start a project to write a Windows credential provider (plugin for the Login UI in Vista and win7). So I built the sample projects in the Windows SDK. All fine, except it defaults to a ...
0
votes
1answer
130 views

What are the pros/cons of Windows SDK 7.1 over 7.0 for VS2008/C++?

I use Visual Studio 2008 and work pretty exclusively with plain old C++. At present I'm using the Windows SDK 7.0, but I see that the VS2010 compilers are available with 7.1. I don't use C# or .NET, ...
0
votes
1answer
300 views

_ATL_DLL_IMPL is causing compilation errors in ATL headers

I'm using VS2008 Standard Edition. A library is including atlcom.h and this is giving compile errors: This raises an error that ClassesAllowedInStream isn't known: struct ATL_PROPMAP_ENTRY { ...
0
votes
2answers
350 views

Building Visual Studio 2008 Setup projects with the Windows 7 SDK

Is it possible to build a Visual Studio 2008 Setup project with only the Windows 7 SDK installed? My setup project refuses to build because it can't find "C:\Program Files\Microsoft ...
0
votes
1answer
2k views

How does WINVER or WIN32_WINNT affect operating system version as shown by dumpbin

We have an existing (old) codeline that we have recently converted from VC6 to VS2008 (converting to VS2005 along the way). After our conversion, all (or most) of our vcproj files set WINVER to ...
-4
votes
2answers
297 views

atlbase.h not found (VS2008)

Basically, I'm trying to compile CEF on VS2008 EE. The IDE complains that it cannot find atlbase.h. During some research, I've found this reference. Considering this isn't the first time I gave C++ ...