Welcome!

Join our community of MMO enthusiasts and game developers! By registering, you'll gain access to discussions on the latest developments in MMO server files and collaborate with like-minded individuals. Join us today and unlock the potential of MMO server development!

Join Today!

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

Initiate Mage
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