We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b544f33 commit 47dc0d7Copy full SHA for 47dc0d7
docs/extensibility/debugger/reference/debug-reason.md
@@ -20,22 +20,22 @@ Specifies why the process was launched for debugging.
20
21
```cpp
22
enum enum_DEBUG_REASON {
23
- DEBUG_REASON_ERROR = 0,
24
- DEBUG_REASON_USER_LAUNCHED = 1,
25
- DEBUG_REASON_USER_ATTACHED = 2,
26
- DEBUG_REASON_AUTO_ATTACHED = 3,
27
- DEBUG_REASON_CAUSALITY = 4
+ DEBUG_REASON_ERROR = 0,
+ DEBUG_REASON_USER_LAUNCHED = 1,
+ DEBUG_REASON_USER_ATTACHED = 2,
+ DEBUG_REASON_AUTO_ATTACHED = 3,
+ DEBUG_REASON_CAUSALITY = 4
28
};
29
typedef DWORD DEBUG_REASON;
30
```
31
32
```csharp
33
public enum enum_DEBUG_REASON {
34
35
36
37
38
39
40
41
0 commit comments