C++, __try and try/catch/finally

On Windows, exceptions are supported at the operating system level. Called Structured Exception Handling (SEH), they are the rough equivalent to Unix signals. Compilers that generate code for Windows typically take advantage of this, they use the SEH infrastructure to implement C++ exceptions. In keeping with the C++ standard, the throw and catch keywords only … Read more