Reputation: 14830
I want to compile a C++ DLL in 64 bin using Visual Studio 2010 Express. I know how to use the configuration manager in C#. Just select x64 as target platform and compile. But in C++, there is only "Win32" available as target.
How can I compile a x64 bit DLL?
Upvotes: 1
Views: 4125
Reputation: 7392
Visual C++ Express does not include 64-bit tools by default. You can install Windows Software Development Kit (SDK) to get them.
For details, see: http://msdn.microsoft.com/en-us/library/9yb4317s(v=vs.100).aspx
Upvotes: 4