I am getting a whole bunch of these:
warning C4996: 'vsprintf' was declared deprecated
see declaration of 'vsprintf'
Message: 'This function or variable may be unsafe. Consider using vsprintf_s instead. To disable deprecation, use _CRT_SECURE_NO_DEPRECATE.
I put this at the top of my code:
#define _CRT_SECURE_NO_DEPRECATE
but nothing changed, I still get the warnings.
Any reason why this wouldn't fix it?
Thanks,
Dave