Tagged Questions

3
votes
1answer
299 views

What happened to WINVER and _WIN32_WINNT guards in windows.h?

In Using the Windows Headers, Microsoft claim that _WIN32_WINNT and NTDDI_VERSION can be used to prevent defining API functions for newer versions of Windows. However, this does not seem to be ...
2
votes
4answers
76 views

Best way to remove collision of names in c++

I just upgraded from WinXP to Seven and I had to add the Windows SDK to my project to make it compile. So far so good but my second project hit a snag, 'PlayerState' is used in my project as a class ...
1
vote
1answer
124 views

Building C++ project on a PC with Windows SDK 7.1 but without VS2010

I have a C++ project (some sort of a console 32-bit appplication) developed in VS2010, which builds just fine on my PC (Windows 7 32-bit). My PC has Microsoft SDK 7.0A installed, which I think comes ...
1
vote
2answers
2k views

How to set amcap's default color space to YUY2?

AMcap is a app for capturing video or to preview from webcam. Its source code comes with Microsoft Windows SDK as sample. I want to (bypass the following process of user interaction in amcap code or ...
0
votes
0answers
19 views

How can I setup nvcc to use Visual C++ Express 2010 x64 from Windows SDK 7.1?

I'm building 64-bit apps with Visual C++ Express 2010 extended with Windows SDK 7.1 (to add 64 bit compiler). When I use nvcc in 32-bits mode it works well. When I use it in 64-bits mode I get this ...
0
votes
0answers
150 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
1answer
129 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
1answer
142 views

Missing WinMain() arguments in Windows SDK sample

In one of the samples that come w/ Windows SDK (the CreateProcessVerb sample), the WinMain code is as follows: int APIENTRY wWinMain (HINSTANCE, HINSTANCE, PWSTR pszCmdLine, int) { .. Note that ...
0
votes
1answer
385 views

programmatically obtaining special folder write permission using User Access Control in Windows 7 and Vista

I need to write a shortcut in the automatic startup folder for all users. The scenario is that a user with administrator privileges, through the configuration dialog of the application, must be able ...