Tagged Questions
6
votes
10answers
1k views
Recommended migration strategy for C++ project in Visual Studio 6
For a large application written in C++ using Visual Studio 6, what is the best way to move into the modern era?
I'd like to take an incremental approach where we slowly move portions of the code ...
4
votes
3answers
2k views
how to avoid “already defined error” in C++
I am gettings these type of errors in a MFC VS6 project while linking the application:
msvcrt.lib(MSVCRT.dll) : error LNK2005: _atoi already defined in LIBC.lib(atox.obj)
I know what it means (a ...
2
votes
2answers
953 views
Build Visual Studio 6 project with Visual Studio 2010
I am trying to build a project created in VS 6 with VS 2010. When I open .dsw file, VS converts the project asking me this message:
"... ProjectName.dsp must be converted to the current Visual C++ ...
2
votes
1answer
429 views
Define a struct in a midl generated header file
I am in the process of automating the build of a legacy product and have hit a wall...
I have a .idl file that is compiled in VC++ 6.0 using midl to generate a .tlb, .h and .c file that has a manual ...
2
votes
3answers
775 views
std::auto_ptr Compile Issue in Visual Studio 6.0
Update: Edited code example to use AutoA for the workaround (which was the original intention). Realized this after seeing rlbond's answer.
I am trying to incorporate the usage of auto_ptr in my ...
1
vote
1answer
49 views
What are the default return values for operator< and operator[] in C++ (Visual Studio 6)?
I've inherited a large Visual Studio 6 C++ project that needs to be translated for VS2005. Some of the classes defined operator< and operator[], but don't specify return types in the declarations. ...
1
vote
1answer
2k views
Visual Studio 6 VC++ Project version - how do I increment it?
I am making changes to an old program written in VC++6. the project resources include a 'version' set which include the following:
Block Header
Comments
Company Name
File Version
Product Version
Both ...