• Unfortunately, we have experienced significant hard drive damage that requires urgent maintenance and rebuilding. The forum will be a state of read only until we install our new drives and rebuild all the configurations needed. Please follow our Facebook page for updates, we will be back up shortly! (The forum could go offline at any given time due to the nature of the failed drives whilst awaiting the upgrades.) When you see an Incapsula error, you know we are in the process of migration.

[Tutorial] Compiling source from earlier version to 2015 Visual Studio - Fixed

Newbie Spellweaver
Joined
Nov 14, 2016
Messages
83
Reaction score
1
Since, no one can solve my problem about compiling earlier source (2003, 2010, 2013) with old directx error. So I provided you some fixes.

[Problem] Compiling 2013 - 2015

ronscript - [Tutorial] Compiling source from earlier version to 2015 Visual Studio - Fixed - RaGEZONE Forums



[Solution]



Add the following library to the linker input files:

legacy_stdio_definitions.lib

VS 2015 now uses inline definitions that call internal functions for many of the stdio.h functions. If an object file (or library member) depends on one of those functions, then the legacy_stdio_definitions.lib provides an externally linkable version of the function that can be linked to.
Your other option is to recompile the unit that depends on those functions with VS 2015 (this is probably the preferred option).
 
Last edited:
Back
Top