Skip to content

Commit d166ec3

Browse files
authored
Delete unnecessary spaces
1 parent d1caf8c commit d166ec3

File tree

1 file changed

+62
-62
lines changed

1 file changed

+62
-62
lines changed

docs/extensibility/debugger/reference/debug-custom-viewer.md

Lines changed: 62 additions & 62 deletions
Original file line numberDiff line numberDiff line change
@@ -2,74 +2,74 @@
22
title: "DEBUG_CUSTOM_VIEWER | Microsoft Docs"
33
ms.date: "11/04/2016"
44
ms.topic: "conceptual"
5-
f1_keywords:
5+
f1_keywords:
66
- "DEBUG_CUSTOM_VIEWER"
7-
helpviewer_keywords:
7+
helpviewer_keywords:
88
- "DEBUG_CUSTOM_VIEWER structure"
99
ms.assetid: 8e0ef3f0-0107-48e8-a037-6e52b4c4ed9d
1010
author: "gregvanl"
1111
ms.author: "gregvanl"
1212
manager: jillfra
13-
ms.workload:
13+
ms.workload:
1414
- "vssdk"
1515
---
1616
# DEBUG_CUSTOM_VIEWER
17-
A structure that identifies a custom viewer or type visualizer.
18-
19-
## Syntax
20-
21-
```cpp
22-
typedef struct tagDEBUG_CUSTOM_VIEWER {
23-
DWORD dwID;
24-
BSTR  bstrMenuName;
25-
BSTR  bstrDescription;
26-
GUID  guidLang;
27-
GUID  guidVendor;
28-
BSTR  bstrMetric;
29-
} DEBUG_CUSTOM_VIEWER;
30-
```
31-
32-
```csharp
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;
40-
};
41-
```
42-
43-
## Members
44-
dwID
45-
An ID to differentiate multiple viewers or visualizers implemented by one `GUID`.
46-
47-
bstrMenuName
48-
The text that will appear in the drop-down menu.
49-
50-
bstrDescription
51-
A description of the custom viewer or type visualizer (must be a null value if not used).
52-
53-
guidLang
54-
Language of the providing expression evaluator.
55-
56-
guidVendor
57-
Vendor of the providing expression evaluator.
58-
59-
bstrMetric
60-
Metric under which the custom viewer or type visualizer `CLSID` is stored.
61-
62-
## Remarks
63-
A list of this structure is returned by a call to the [GetCustomViewerList](../../../extensibility/debugger/reference/idebugproperty3-getcustomviewerlist.md) method (and, by extension, the [GetCustomViewerList](../../../extensibility/debugger/reference/ieevisualizerservice-getcustomviewerlist.md) method).
64-
65-
## Requirements
66-
Header: msdbg.h
67-
68-
Namespace: Microsoft.VisualStudio.Debugger.Interop
69-
70-
Assembly: Microsoft.VisualStudio.Debugger.Interop.dll
71-
72-
## See Also
73-
[Structures and Unions](../../../extensibility/debugger/reference/structures-and-unions.md)
74-
[GetCustomViewerList](../../../extensibility/debugger/reference/idebugproperty3-getcustomviewerlist.md)
75-
[GetCustomViewerList](../../../extensibility/debugger/reference/ieevisualizerservice-getcustomviewerlist.md)
17+
A structure that identifies a custom viewer or type visualizer.
18+
19+
## Syntax
20+
21+
```cpp
22+
typedef struct tagDEBUG_CUSTOM_VIEWER {
23+
DWORD dwID;
24+
BSTR  bstrMenuName;
25+
BSTR  bstrDescription;
26+
GUID  guidLang;
27+
GUID  guidVendor;
28+
BSTR  bstrMetric;
29+
} DEBUG_CUSTOM_VIEWER;
30+
```
31+
32+
```csharp
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;
40+
};
41+
```
42+
43+
## Members
44+
dwID
45+
An ID to differentiate multiple viewers or visualizers implemented by one `GUID`.
46+
47+
bstrMenuName
48+
The text that will appear in the drop-down menu.
49+
50+
bstrDescription
51+
A description of the custom viewer or type visualizer (must be a null value if not used).
52+
53+
guidLang
54+
Language of the providing expression evaluator.
55+
56+
guidVendor
57+
Vendor of the providing expression evaluator.
58+
59+
bstrMetric
60+
Metric under which the custom viewer or type visualizer `CLSID` is stored.
61+
62+
## Remarks
63+
A list of this structure is returned by a call to the [GetCustomViewerList](../../../extensibility/debugger/reference/idebugproperty3-getcustomviewerlist.md) method (and, by extension, the [GetCustomViewerList](../../../extensibility/debugger/reference/ieevisualizerservice-getcustomviewerlist.md) method).
64+
65+
## Requirements
66+
Header: msdbg.h
67+
68+
Namespace: Microsoft.VisualStudio.Debugger.Interop
69+
70+
Assembly: Microsoft.VisualStudio.Debugger.Interop.dll
71+
72+
## See Also
73+
[Structures and Unions](../../../extensibility/debugger/reference/structures-and-unions.md)
74+
[GetCustomViewerList](../../../extensibility/debugger/reference/idebugproperty3-getcustomviewerlist.md)
75+
[GetCustomViewerList](../../../extensibility/debugger/reference/ieevisualizerservice-getcustomviewerlist.md)

0 commit comments

Comments
 (0)