Unhandeled Exception Process
* Effective Exception Handling in Visual C++
http://www.codeproject.com/Articles/207464/Exception-Handling-in-Visual-Cplusplus
Exceptions
http://www.cplusplus.com/doc/tutorial/exceptions/
// 메시지 박스(MessageBox) 발생 안함
__try{ } __except(EXCEPTION_EXECUTE_HANDLER){ }
// MsgBox발생
try { throw ?; } catch (int e){ }
__try{ } __finally { }
//참고
http://msdn.microsoft.com/ko-kr/library/4t3saedz.aspx
try, catch 및 throw 문
컴파일러 설정 /EHsc
Unhandled excption in .exe 0x80000001
반응형
'Code > Desktop' 카테고리의 다른 글
CodeProject - 사운드 관련 자료 정리 (0) | 2014.06.05 |
---|---|
시스템 대기모드(절전 모드, 스크린세이버) 들어가는 것 방지 (0) | 2014.05.16 |
IPC(Inter-Process Communication) 예제 정리 (0) | 2014.04.01 |
sscanf 에러 - 현재 보류 (0) | 2014.03.26 |
윈도우즈 64/32비트 판별 함수 (0) | 2014.03.26 |