File tree Expand file tree Collapse file tree 1 file changed +12
-12
lines changed
docs/extensibility/debugger/reference Expand file tree Collapse file tree 1 file changed +12
-12
lines changed Original file line number Diff line number Diff line change @@ -20,23 +20,23 @@ A structure that identifies a custom viewer or type visualizer.
20
20
21
21
``` cpp
22
22
typedef struct tagDEBUG_CUSTOM_VIEWER {
23
- DWORD dwID;
24
- BSTR bstrMenuName;
25
- BSTR bstrDescription;
26
- GUID guidLang;
27
- GUID guidVendor;
28
- BSTR bstrMetric;
23
+ DWORD dwID;
24
+ BSTR bstrMenuName;
25
+ BSTR bstrDescription;
26
+ GUID guidLang;
27
+ GUID guidVendor;
28
+ BSTR bstrMetric;
29
29
} DEBUG_CUSTOM_VIEWER;
30
30
```
31
31
32
32
```csharp
33
33
public struct DEBUG_CUSTOM_VIEWER {
34
- public uint dwID;
35
- public string bstrMenuName;
36
- public string bstrDescription;
37
- public Guid guidLang;
38
- public Guid guidVendor;
39
- public string bstrMetric;
34
+ public uint dwID;
35
+ public string bstrMenuName;
36
+ public string bstrDescription;
37
+ public Guid guidLang;
38
+ public Guid guidVendor;
39
+ public string bstrMetric;
40
40
};
41
41
```
42
42
You can’t perform that action at this time.
0 commit comments