STATUS_UNWIND_CONSOLIDATE "should not happen", so don't include it -
authorguy <guy@f5534014-38df-0310-8fa8-9805f1628bb7>
Fri, 2 Jul 2010 08:52:35 +0000 (08:52 +0000)
committerguy <guy@f5534014-38df-0310-8fa8-9805f1628bb7>
Fri, 2 Jul 2010 08:52:35 +0000 (08:52 +0000)
we'd have to include some other headers to get it defined.

Get rid of the include of Winbase.h - it doesn't define
STATUS_UNWIND_CONSOLIDATE, and it's not necessary.

git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@33413 f5534014-38df-0310-8fa8-9805f1628bb7

capture_sync.c

index 2ed64be34bd38c58af9097567ef53a0d0b2ee862..68b79f79280acbc1fad8f0245cf2c084b46792c1 100644 (file)
@@ -44,7 +44,6 @@
 #include <signal.h>
 
 #ifdef _WIN32
-#include <Winbase.h>
 #include <wsutil/unicode-utils.h>
 #endif
 
@@ -275,7 +274,6 @@ win32strexception(DWORD exception)
       { EXCEPTION_PRIV_INSTRUCTION, "Privileged instruction" },
       { EXCEPTION_SINGLE_STEP, "Single-step complete" },
       { EXCEPTION_STACK_OVERFLOW, "Stack overflow" },
-      { STATUS_UNWIND_CONSOLIDATE, "Frame consolidation executed" },
       { 0, NULL }
     };
 #define N_EXCEPTIONS   (sizeof exceptions / sizeof exceptions[0])