J'obtiens une erreur 'strcpy' et un avertissement pour les lignes suivantes :
_tcscpy(strCommandLine,_T("MyProgram.exe /param1"));
_tcscpy(strApplicationName,_T("MyProgram.exe"));
Je ne sais pas pourquoi j'obtiens une erreur ou un avertissement de type "strcpy" puisque je n'utilise pas "strcpy". Les seules lignes liées à ce problème sont les suivantes
LPCTSTR strApplicationName;
LPTSTR strCommandLine;
_tcscpy(strCommandLine,_T("MyProgram.exe /param1")); //warning is on this line
_tcscpy(strApplicationName,_T("MyProgram.exe")); //error is on this line
La sortie est :
1>c:\documents and settings\X.X\my documents\sandbox\sample.cpp(52) : warning C4996: 'strcpy': This function or variable may be unsafe. Consider using strcpy_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.
1> c:\program files\microsoft visual studio 8\vc\include\string.h(74) : see declaration of 'strcpy'
1>c:\documents and settings\X.X\my documents\sandbox\sample.cpp(53) : error C2664: 'strcpy' : cannot convert parameter 1 from 'LPCTSTR' to 'char *'
1> Conversion loses qualifiers
Une idée de ce que cela pourrait signifier ?
Ce sont mes en-têtes :
iostream
windows.h
stdio.h
tchar.h
winnt.h