1 // Copyright (c) Microsoft. All rights reserved.
2 // Licensed under the MIT license. See LICENSE file in the project root for
3 // full license information.
4 
5 #include <windows.h>
6 #include "seh.h"
7 
8 char test[] = "SEH0028.c";
9 
10 void addtwo(long First, long Second, long *Place) {
11   RaiseException(EXCEPTION_INT_OVERFLOW, 0, /*no flags*/ 0, 0);
12   /* not executed due to exception being raised */
13   *Place = First + Second;
14   return;
15 }
16 
17 int main() {
18   LONG Counter;
19 
20   Counter = 0;
21 
22   try {
23     /* set counter = 1 */
24     Counter += 1;
25     addtwo(0x7fff0000, 0x10000, &Counter);
26   }
27   except((GetExceptionCode() == (STATUS_INTEGER_OVERFLOW)) ? 1 : 0)
28   /* 1==EXECUTE HANDLER after unwinding */
29   {
30     /* set counter = 2 */
31     Counter += 1;
32   }
33   endtry
34 
35   if (Counter != 2) {
36     printf("TEST 28 FAILED. Counter = %d\n\r", Counter);
37     return -1;
38   }
39 
40   return 0;
41 }
42