본문 바로가기
IT-개발,DB

[개발/VC++] Message: 'This function or variable may be unsafe. Consider using wcsncpy_s instead

by SB리치퍼슨 2011. 12. 28.


Message: 'This function or variable may be unsafe. Consider using wcsncpy_s instead.
위의 경고 메세지에 대한 대처 방법입니다. 

소스 상단에

#pragma warning(disable:4996)

를 추가해서 경고메세지가 나타나지 않게 하는 방법과

일반적인 방법으로는
CRT 헤더파일 선언에 앞서서 #define _CRT_SECURE_NO_DEPRECATE 해 주기입니다.
#define _CRT_SECURE_NO_DEPRECATE <----위치중요!! 항상먼저..
#include "string.h"

 
가장 좋은 방법은 아래에...

1. right click the project name in solution explorer, then click properties
2. go to "Configuration Properties" --> "C/C++" --> "Command Line"
3. In "Additional options" textbox enter the folowing text
/D "_CRT_SECURE_NO_DEPRECATE" 
 
반응형

댓글