Skip to content

Commit e93342f

Browse files
authored
Delete unnecessary spaces
1 parent 3ae81cf commit e93342f

File tree

1 file changed

+44
-44
lines changed

1 file changed

+44
-44
lines changed

docs/debugger/debug-interface-access/idiasymbol-get-intro.md

Lines changed: 44 additions & 44 deletions
Original file line numberDiff line numberDiff line change
@@ -2,57 +2,57 @@
22
title: "IDiaSymbol::get_intro | Microsoft Docs"
33
ms.date: "11/04/2016"
44
ms.topic: "conceptual"
5-
dev_langs:
5+
dev_langs:
66
- "C++"
7-
helpviewer_keywords:
7+
helpviewer_keywords:
88
- "IDiaSymbol::get_intro method"
99
ms.assetid: 101afe4a-4c57-45de-87b4-330394c6de10
1010
author: "mikejo5000"
1111
ms.author: "mikejo"
1212
manager: jillfra
13-
ms.workload:
13+
ms.workload:
1414
- "multiple"
1515
---
1616
# IDiaSymbol::get_intro
17-
Retrieves a flag that specifies whether the function is an introducing virtual function.
18-
19-
## Syntax
20-
21-
```C++
22-
HRESULT get_intro
23-
BOOL* pRetVal
24-
);
25-
```
26-
27-
#### Parameters
28-
`pRetVal`
29-
[out] Returns `TRUE` if the function is intro virtual; otherwise, returns `FALSE`.
30-
31-
## Return Value
32-
If successful, returns `S_OK`; otherwise, returns `S_FALSE` or error code.
33-
17+
Retrieves a flag that specifies whether the function is an introducing virtual function.
18+
19+
## Syntax
20+
21+
```C++
22+
HRESULT get_intro
23+
BOOL* pRetVal
24+
);
25+
```
26+
27+
#### Parameters
28+
`pRetVal`
29+
[out] Returns `TRUE` if the function is intro virtual; otherwise, returns `FALSE`.
30+
31+
## Return Value
32+
If successful, returns `S_OK`; otherwise, returns `S_FALSE` or error code.
33+
3434
> [!NOTE]
35-
> A return value of `S_FALSE` means the property is not available for the symbol.
36-
37-
## Example
38-
39-
```C++
40-
class A {
41-
virtual int f1();
42-
}
43-
class B : public A {
44-
int f1();
45-
}
46-
```
47-
48-
Both `A::f1` and `B::f1` are virtual functions, but `A::f1` is intro virtual.
49-
50-
## Requirements
51-
52-
|Requirement|Description|
53-
|-----------------|-----------------|
54-
|Header:|dia2.h|
55-
|Version:|DIA SDK v7.0|
56-
57-
## See Also
58-
[IDiaSymbol](../../debugger/debug-interface-access/idiasymbol.md)
35+
> A return value of `S_FALSE` means the property is not available for the symbol.
36+
37+
## Example
38+
39+
```C++
40+
class A {
41+
virtual int f1();
42+
}
43+
class B : public A {
44+
int f1();
45+
}
46+
```
47+
48+
Both `A::f1` and `B::f1` are virtual functions, but `A::f1` is intro virtual.
49+
50+
## Requirements
51+
52+
|Requirement|Description|
53+
|-----------------|-----------------|
54+
|Header:|dia2.h|
55+
|Version:|DIA SDK v7.0|
56+
57+
## See Also
58+
[IDiaSymbol](../../debugger/debug-interface-access/idiasymbol.md)

0 commit comments

Comments
 (0)