08.10.2012, 15:09:52
Just for the record, I needed to un-define some macros to get the std::min and std::max to compile:
Not sure why nobody else has this problem, but in my case MSVC++ found macros called "min" and "max" and replaced them with nothing. Obviously, that resulted in syntax errors.
I also had to add DbgHelp.lib to the linker for the stack dump functions.
Is there any up-to-date IDB floating around, btw?
Code:
#ifdef min
#undef min
#endif
#ifdef max
#undef max
#endif
I also had to add DbgHelp.lib to the linker for the stack dump functions.
Is there any up-to-date IDB floating around, btw?