문제

I'm trying to find out what the bits mean in an SEH exception code. I found out that bit 28 is reserved by the system for system-defined exceptions from MSDN's article on RaiseException. However, given the exception code 0xC0000005, I can't discover why it is not 0x00000005. Is the bit pattern 0xC0000000 indicative of something not lost to the mists of time? If so, what is it?

도움이 되었습니까?

해결책

From the "Raising Software Exceptions" page on MSDN:

These two bits describe the basic status of the code:
11 = error, 00 = success, 01 = informational, 10 = warning.

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top