Skip to content

Commit a275df4

Browse files
authored
Merge pull request #1 from MicrosoftDocs/master
Sync With Master
2 parents e12d6cd + 6407dac commit a275df4

File tree

6 files changed

+174
-7
lines changed

6 files changed

+174
-7
lines changed
Lines changed: 53 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,53 @@
1+
---
2+
description: "Retrieves the offset of the stack pad from the frame pointer register."
3+
title: "IDiaSymbol::get_framePadOffset | Microsoft Docs"
4+
ms.date: "04/27/2021"
5+
ms.topic: "reference"
6+
dev_langs:
7+
- "C++"
8+
helpviewer_keywords:
9+
- "IDiaSymbol::get_framePadOffset method"
10+
author: "mikejo5000"
11+
ms.author: "mikejo"
12+
manager: jmartens
13+
ms.workload:
14+
- "multiple"
15+
---
16+
# IDiaSymbol::get_framePadOffset
17+
18+
Retrieves the offset of the stack pad from the frame pointer register.
19+
20+
## Syntax
21+
22+
```C++
23+
HRESULT get_framePadOffset
24+
DWORD* pPadOffset
25+
);
26+
```
27+
28+
#### Parameters
29+
30+
`pPadOffset`
31+
32+
[out] Returns the offset of the stack pad.
33+
34+
## Return Value
35+
36+
If successful, returns `S_OK`; otherwise, returns `S_FALSE` or error code.
37+
38+
> [!NOTE]
39+
> A return value of `S_FALSE` means the property is not available for the symbol.
40+
41+
## Remarks
42+
43+
This method is supported starting in Visual Studio 2019 version 16.10 Preview 2.
44+
45+
## Requirements
46+
47+
|Requirement|Description|
48+
|-----------------|-----------------|
49+
|Header:|dia2.h|
50+
|Version:|DIA SDK v7.0|
51+
52+
## See also
53+
- [IDiaSymbol](../../debugger/debug-interface-access/idiasymbol.md)
Lines changed: 55 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,55 @@
1+
---
2+
description: "Retrieves the extra pad size added to each function."
3+
title: "IDiaSymbol::get_framePadSize | Microsoft Docs"
4+
ms.date: "04/27/2021"
5+
ms.topic: "reference"
6+
dev_langs:
7+
- "C++"
8+
helpviewer_keywords:
9+
- "IDiaSymbol::get_framePadSize method"
10+
author: "mikejo5000"
11+
ms.author: "mikejo"
12+
manager: jmartens
13+
ms.workload:
14+
- "multiple"
15+
---
16+
# IDiaSymbol::get_framePadSize
17+
18+
Retrieves the extra pad size added to each function.
19+
20+
## Syntax
21+
22+
```C++
23+
HRESULT get_framePadSize
24+
DWORD* pPadSize
25+
);
26+
```
27+
28+
#### Parameters
29+
30+
`pPadSize`
31+
32+
[out] Returns the extra pad size added to each function.
33+
34+
## Return Value
35+
36+
If successful, returns `S_OK`; otherwise, returns `S_FALSE` or error code.
37+
38+
> [!NOTE]
39+
> A return value of `S_FALSE` means the property is not available for the symbol.
40+
41+
## Remarks
42+
43+
The extra pad size is typically used by Edit and Continue.
44+
45+
This method is supported starting in Visual Studio 2019 version 16.10 Preview 2.
46+
47+
## Requirements
48+
49+
|Requirement|Description|
50+
|-----------------|-----------------|
51+
|Header:|dia2.h|
52+
|Version:|DIA SDK v7.0|
53+
54+
## See also
55+
- [IDiaSymbol](../../debugger/debug-interface-access/idiasymbol.md)
Lines changed: 53 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,53 @@
1+
---
2+
description: "Retrieves a value that tells whether the function was compiled with stack frame run-time error checking. This is the /RTCs flag."
3+
title: "IDiaSymbol::get_isRTCs | Microsoft Docs"
4+
ms.date: "04/27/2021"
5+
ms.topic: "reference"
6+
dev_langs:
7+
- "C++"
8+
helpviewer_keywords:
9+
- "IDiaSymbol::get_isRTCs method"
10+
author: "mikejo5000"
11+
ms.author: "mikejo"
12+
manager: jmartens
13+
ms.workload:
14+
- "multiple"
15+
---
16+
# IDiaSymbol::get_isRTCs
17+
18+
Returns a value that tells whether the function was compiled with stack frame run-time error checking. This is the /RTCs flag.
19+
20+
## Syntax
21+
22+
```C++
23+
HRESULT get_isRTCs
24+
DWORD* pRetVal
25+
);
26+
```
27+
28+
#### Parameters
29+
30+
`pRetVal`
31+
32+
[out] A pointer to a BOOL that specifies whether the function was compiled with stack frame run-time error checking.
33+
34+
## Return Value
35+
36+
If successful, returns `S_OK`; otherwise, returns `S_FALSE` or error code.
37+
38+
> [!NOTE]
39+
> A return value of `S_FALSE` means the property is not available for the symbol.
40+
41+
## Remarks
42+
43+
This method is supported starting in Visual Studio 2019 version 16.10 Preview 2.
44+
45+
## Requirements
46+
47+
|Requirement|Description|
48+
|-----------------|-----------------|
49+
|Header:|dia2.h|
50+
|Version:|DIA SDK v7.0|
51+
52+
## See also
53+
- [IDiaSymbol](../../debugger/debug-interface-access/idiasymbol.md)

docs/debugger/debug-interface-access/toc.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -879,6 +879,10 @@
879879
href: idiasymbol-get-editandcontinueenabled.md
880880
- name: IDiaSymbol::get_farReturn
881881
href: idiasymbol-get-farreturn.md
882+
- name: IDiaSymbol::get_framePadOffset
883+
href: idiasymbol-get-framepadoffset.md
884+
- name: IDiaSymbol::get_framePadSize
885+
href: idiasymbol-get-framepadsize.md
882886
- name: IDiaSymbol::get_framePointerPresent
883887
href: idiasymbol-get-framepointerpresent.md
884888
- name: IDiaSymbol::get_frontEndBuild
@@ -969,6 +973,8 @@
969973
href: idiasymbol-get-ispointertomemberfunction.md
970974
- name: IDiaSymbol::get_isReturnValue
971975
href: idiasymbol-get-isreturnvalue.md
976+
- name: IDiaSymbol::get_isRTCs
977+
href: idiasymbol-get-isrtcs.md
972978
- name: IDiaSymbol::get_isSafeBuffers
973979
href: idiasymbol-get-issafebuffers.md
974980
- name: IDiaSymbol::get_isSdl

docs/ide/codespaces/codespaces-overview.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@ title: Overview of GitHub Codespaces (Preview)
33
description: Learn more about GitHub Codespaces with Visual Studio and how it can help extend your development environment to the cloud.
44
ms.topic: overview
55
ms.date: 09/04/2020
6-
author: TerryGLee
7-
ms.author: tglee
6+
author: gregvanl
7+
ms.author: gregvanl
88
manager: jmartens
99
ms.prod: visual-studio-windows
1010
ms.technology: vs-ide-general
@@ -15,8 +15,8 @@ monikerRange: vs-2019
1515

1616
# What is GitHub Codespaces? (Preview)
1717

18-
> [!Important]
19-
> As of April 12th 2021, connecting to GitHub Codespaces from Visual Studio 2019 will no longer be supported and this private preview has concluded. We're focused on evolving experiences for a cloud-powered inner loop and VDI solutions optimized for a broad set of Visual Studio workloads. We encourage you to be involved in our [developer community forum](https://developercommunity.visualstudio.com/home) for Visual Studio for information on future previews and roadmap information.
18+
> [!Important]
19+
> As of April 12th 2021, connecting to GitHub Codespaces from Visual Studio 2019 will no longer be supported and this private preview has concluded. We're focused on evolving experiences for a cloud-powered inner loop and VDI solutions optimized for a broad set of Visual Studio workloads. We encourage you to be involved in our [developer community forum](https://developercommunity.visualstudio.com/home) for Visual Studio for information on future previews and roadmap information.
2020
2121
Welcome to Codespaces! We're glad you're here.
2222

@@ -34,9 +34,9 @@ GitHub Codespaces features are built on top of a few fundamental concepts. This
3434

3535
Many developers today try to code in remote setups or VMs that are configured with specific development and runtime stacks. They do so because it's too hard, too disruptive, and in some cases, near impossible to set up these development environments locally. Also, individuals want to try out new technologies or new frameworks without the fear of "messing up" the machines they need for their day-to-day work.
3636

37-
While using remote environments and remote-capable tools empowers developers, there is often the overhead of machine management. Environment configuration often complicates onboarding and context-switching. GitHub Codespaces removes the barriers to rapid onboarding and context-switching by enabling many environments to exist simultaneously.
37+
While using remote environments and remote-capable tools empowers developers, there is often the overhead of machine management. Environment configuration often complicates onboarding and context-switching. GitHub Codespaces removes the barriers to rapid onboarding and context-switching by enabling many environments to exist simultaneously.
3838

39-
GitHub Codespaces provides managed solutions that allow you to focus on productivity over setup. GitHub Codespaces conceptually and technically extends Visual Studio 2019 for remote development.
39+
GitHub Codespaces provides managed solutions that allow you to focus on productivity over setup. GitHub Codespaces conceptually and technically extends Visual Studio 2019 for remote development.
4040

4141
### About codespaces
4242

docs/ide/filtered-solutions.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ ms.topic: conceptual
88
helpviewer_keywords:
99
- "filtered solution"
1010
- "solution filtering"
11-
author: jillre
11+
author: TerryGLee
1212
ms.author: stsu
1313
manager: jmartens
1414
monikerRange: ">= vs-2019"

0 commit comments

Comments
 (0)