You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
477 B
26 lines
477 B
// utxcpt3.c - user mode seh test #3.
|
|
|
|
#include <ntos.h>
|
|
|
|
BOOLEAN EndTest = FALSE;
|
|
|
|
main()
|
|
{
|
|
|
|
while (EndTest == FALSE) {
|
|
try {
|
|
try {
|
|
DbgPrint("doing return\n");
|
|
return;
|
|
}
|
|
finally {
|
|
DbgPrint("in inner finally\n");
|
|
break;
|
|
}
|
|
}
|
|
finally {
|
|
DbgPrint("in last finally\n");
|
|
continue;
|
|
}
|
|
}
|
|
}
|