Can VS2010 create native executable file working u

2019-06-05 23:57发布

I plan to develop some native C++ project in VS2010. But it is possible my client will require to support Windows 2000. I know VS2008 creates native executable files compatible with Windows 2000. I would like to migrate to VS2010 but i don't know if it is possible to create native executable file compatible with Windows 2000 in VS2010.

2条回答
我欲成王,谁敢阻挡
2楼-- · 2019-06-06 00:05

CRT of VS2010 uses kernel32.EncodePointer() function which is missing in Windows 2000.
Read this question.

查看更多
祖国的老花朵
3楼-- · 2019-06-06 00:19

You can write applications for Windows 2000 SP4 using Visual Studio 2010, so long as you only target Version 2.0 of the .NET framework.

Anything higher than .NET 2.0 is not guaranteed to run on Windows 2000 SP4.

You can see the system requirements for each framework here: http://msdn.microsoft.com/en-us/library/8z6watww.aspx

查看更多
登录 后发表回答