Skip to content

Commit c7d17c7

Browse files
committed
Removed IsFirstChance.
1 parent fabac9b commit c7d17c7

File tree

4 files changed

+0
-8
lines changed

4 files changed

+0
-8
lines changed

Debugger/DataExchange.cs

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,6 @@ public struct ExceptionDebugInfo
1212

1313
public HardwareBreakpointRegister CausedBy;
1414

15-
[MarshalAs(UnmanagedType.I1)]
16-
public bool IsFirstChance;
17-
1815
[StructLayout(LayoutKind.Sequential, Pack = 1)]
1916
public struct RegisterInfo
2017
{

NativeCore/Unix/ReClassNET_Plugin.hpp

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -149,8 +149,6 @@ struct ExceptionDebugInfo
149149

150150
HardwareBreakpointRegister CausedBy;
151151

152-
bool IsFirstChance;
153-
154152
struct RegisterInfo
155153
{
156154
#ifdef _WIN64

NativeCore/Windows/Debugger.cpp

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,6 @@ bool __stdcall AwaitDebugEvent(DebugEvent* evt, int timeoutInMilliseconds)
4545
auto& exception = _evt.u.Exception;
4646

4747
// Copy basic informations.
48-
evt->ExceptionInfo.IsFirstChance = exception.dwFirstChance != 0;
4948
evt->ExceptionInfo.ExceptionAddress = exception.ExceptionRecord.ExceptionAddress;
5049
evt->ExceptionInfo.ExceptionCode = exception.ExceptionRecord.ExceptionCode;
5150
evt->ExceptionInfo.ExceptionFlags = exception.ExceptionRecord.ExceptionFlags;

NativeCore/Windows/ReClassNET_Plugin.hpp

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -149,8 +149,6 @@ struct ExceptionDebugInfo
149149

150150
HardwareBreakpointRegister CausedBy;
151151

152-
bool IsFirstChance;
153-
154152
struct RegisterInfo
155153
{
156154
#ifdef _WIN64

0 commit comments

Comments
 (0)