deprecated C functions
Thanks,
Cari
Thanks,
Cari
As for now, as Ayman said, please post link of errors or check corresponding MSDN topics for deprecated functions.
Thanks,
Nikola
If you go the Property Page where you can enter in new preprocessor definitions, and then you go down to see the actual Command Line, you will see that quotes have been put around _CRT_SECURE_NO_DEPRECATE. The /D option is supposed to strip the quotes (according to documentation), but that doesn't seem to work right.
I added /D_CRT_SECURE_NO_DEPRECATE in the Additional Options box, and that fixed the problem.
(I also had trouble with my defined symbol not even appearing on the command line. Can someone confirm that the Preprocessor Definitions input box has trouble translating its input into proper commandline options)
-Aner
#ifndef _CRT_INSECURE_DEPRECATE
#define _CRT_INSECURE_DEPRECATE
#endif i have a lot of code that has been very thoroughly tested in production environments for many years, and i don't really want to go off on some tangent changing everything just to protect me from myself. what am i missing?