File tree Expand file tree Collapse file tree 1 file changed +44
-44
lines changed
docs/debugger/debug-interface-access Expand file tree Collapse file tree 1 file changed +44
-44
lines changed Original file line number Diff line number Diff line change 2
2
title : " IDiaSymbol::get_intro | Microsoft Docs"
3
3
ms.date : " 11/04/2016"
4
4
ms.topic : " conceptual"
5
- dev_langs :
5
+ dev_langs :
6
6
- " C++"
7
- helpviewer_keywords :
7
+ helpviewer_keywords :
8
8
- " IDiaSymbol::get_intro method"
9
9
ms.assetid : 101afe4a-4c57-45de-87b4-330394c6de10
10
10
author : " mikejo5000"
11
11
ms.author : " mikejo"
12
12
manager : jillfra
13
- ms.workload :
13
+ ms.workload :
14
14
- " multiple"
15
15
---
16
16
# 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
+
34
34
> [ !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)
You can’t perform that action at this time.
0 commit comments