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(...) {
// ...
}
}