728x90
반응형
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 | #include<crtdbg.h> #include<strsafe.h> #include<Windows.h> #include<iostream> //에러 발생시 호출할 함수 void InvalidParameterHandler(PCTSTR expression, PCTSTR function, PCTSTR file, unsigned int line, uintptr_t) { std::wcout << "에러 : " << function << std::endl; std::wcout << "파일 : " << file << std::endl; std::wcout << "라인 : " << line << std::endl; std::wcout << "-> " << expression << std::endl; } int main(){ TCHAR str[4]; //어설션 다이얼로그 박스를 띄우지 않도록 설정 _CrtSetReportMode(_CRT_ASSERT, 0); //에러 발생시 호출할 함수 등록 _set_invalid_parameter_handler(InvalidParameterHandler); wcscpy_s(str, _countof(str), L"12345"); return 0; } |
_invalid_parameter_handler _set_invalid_parameter_handler(
|
|
int _CrtSetReportMode( int reportType, int reportMode ); |
728x90
반응형
'프로그래밍 > Windows' 카테고리의 다른 글
쓰레드 동기화와 WAIT_ABANDONED (7) | 2014.06.02 |
---|---|
GetExitCodeProcess (0) | 2014.05.25 |
(싱글 더블 와이드) 함수 정리 (0) | 2014.05.25 |
IPC MailSlot 메일 슬롯 (0) | 2014.05.25 |
tchar.h (1) | 2014.05.13 |
안전 문자열 함수 _tcscpy_s (0) | 2014.04.30 |
윈도우즈 에러 핸들링 GetLasterror / FormatMessage (0) | 2014.04.30 |
윈도우 가시모드/비가시모드 (0) | 2014.03.28 |
네모 그리기, 선 긋기, 글 쓰기 (0) | 2014.03.28 |
winAPI 윈도우에 값 쓰거나 읽기 (0) | 2014.03.28 |
댓글