0

Is it officially documented anywhere is it permitted to use nested SEH inside exception filter?

I'm talking about this:

__try {
  buggy_function_1();
} __except(filter_function()) {
  // ...
}

and

int filter_function() {
  __try {
    buggy_function_2();
  } __except(...) {
    // ...
  }
}
too honest for this site
  • 12,050
  • 4
  • 30
  • 52
firk
  • 339
  • 2
  • 10

0 Answers0