Tagged Questions
2
votes
1answer
685 views
Why is my Platform environment variable defined as 'BNB'?
Something, maybe the windows sdk or visual studio installer, has defined the Platform environment variable and given it the value BNB.
What does BNB mean, and why is Platform set to BNB?
Thanks.
...
1
vote
2answers
60 views
How do I compile a Window API program using cl?
I am trying to compile a simple C Windows API program using the Windows SDK Command Prompt.
Here an excerpt from the program:
#include <Windows.h>
int WINAPI WinMain(HINSTANCE hInstance, ...
0
votes
0answers
183 views
Visual C++ Command Line Compiler (CL.EXE) Redirect OBJ Files
The compiler (CL.EXE) can take multiple source files, but likes to generate all the OBJ files in the directory that it is invoked. I couldn't find the compiler flag to set an output directory but I ...
0
votes
0answers
61 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
135 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
266 views
How to set PlatformToolset from custom property sheet in Visual Studio 2010
I am moving now from VS 2005 to VS 2010 with products consisting of few solutions with numerous projects each. I wanted to make use of the property sheets system so our numerous configurations would ...
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 ...