| 213 | ExpTest2(); |
| 214 | } |
| 215 | void TestExceptionWalking() |
| 216 | { |
| 217 | __try |
| 218 | { |
| 219 | ExpTest1(); |
| 220 | } |
| 221 | __except (ExpFilter(GetExceptionInformation(), GetExceptionCode())) |
| 222 | { |
| 223 | printf("\n\nException-Handler called\n\n\n"); |
| 224 | } |
| 225 | } |
| 226 | |
| 227 | int f(int i) |
| 228 | { |