I am getting "error C2039: '_file': is not a member of '_iobuf'" when i tried to migrate from VS2010 to VS2015 how to resolve it? I can not turn on Cyrillic alphabet in my Visual C++ console application on Visual Studio 2017 Community. I can't run my program in another comp...
Could not load file or assembly 'MDll, Version=1.0.4407.26508, Culture=neutral, PublicKeyToken=null' or one of its dependencies. This application has failed to start because the application configuration is incorrect. Reinstalling the application may fix this problem. (Exception from HRESULT: 0x...
Ah I see, it is complaining about overloaded new, not the constructor.I suspect the error is actually somewhere earlier. The CObject operator new was overloaded (to likely track allocations) and then someone did this trick:#define new new(__FILE__, __LINE__)...