摘要:
Funcfurter1Now let's look at another scenario in which termination handling really proves its value. Look at this function:DWORD Funcfurter1() { DWORD dwTemp; // 1. Do any processing here. ... __try { // 2. Request permission to access // protected data, and then use it.
... 阅读全文
摘要:
Because the compiler and the operating system are intimately involved with the execution of your code when you use SEH, I believe that the best way to demonstrate how SEH works is by examining source code samples and discussing the order in which the statements execute in each example.Therefore, the 阅读全文