Skip to content

Delete unnecessary spaces #2440

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Feb 12, 2019
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
92 changes: 46 additions & 46 deletions docs/debugger/debug-interface-access/stackframetypeenum.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,58 +2,58 @@
title: "StackFrameTypeEnum | Microsoft Docs"
ms.date: "11/04/2016"
ms.topic: "conceptual"
dev_langs:
dev_langs:
- "C++"
helpviewer_keywords:
helpviewer_keywords:
- "StackFrameTypeEnum enumeration"
ms.assetid: 61e40163-eee0-4c1f-af47-cef3771bdc41
author: "mikejo5000"
ms.author: "mikejo"
manager: jillfra
ms.workload:
ms.workload:
- "multiple"
---
# StackFrameTypeEnum
Specifies the stack frame type.
## Syntax
```C++
enum StackFrameTypeEnum {
FrameTypeFPO,
FrameTypeTrap,
FrameTypeTSS,
FrameTypeStandard,
FrameTypeFrameData,
FrameTypeUnknown = -1
};
```
## Elements
`FrameTypeFPO`
Frame pointer omitted; FPO info available.
`FrameTypeTrap`
Kernel Trap frame.
`FrameTypeTSS`
Kernel Trap frame.
`FrameTypeStandard`
Standard EBP stack frame.
`FrameTypeFrameData`
Frame pointer omitted; Frame data info available.
`FrameTypeUnknown`
Frame that does not have any debug info.
## Remarks
The values in this enumeration are returned by a call to the [IDiaStackFrame::get_type](../../debugger/debug-interface-access/idiastackframe-get-type.md) method.
## Requirements
Header: cvconst.h
## See Also
[Enumerations and Structures](../../debugger/debug-interface-access/enumerations-and-structures.md)
[IDiaStackFrame::get_type](../../debugger/debug-interface-access/idiastackframe-get-type.md)
Specifies the stack frame type.

## Syntax

```C++
enum StackFrameTypeEnum {
FrameTypeFPO,
FrameTypeTrap,
FrameTypeTSS,
FrameTypeStandard,
FrameTypeFrameData,
FrameTypeUnknown = -1
};
```

## Elements
`FrameTypeFPO`
Frame pointer omitted; FPO info available.

`FrameTypeTrap`
Kernel Trap frame.

`FrameTypeTSS`
Kernel Trap frame.

`FrameTypeStandard`
Standard EBP stack frame.

`FrameTypeFrameData`
Frame pointer omitted; Frame data info available.

`FrameTypeUnknown`
Frame that does not have any debug info.

## Remarks
The values in this enumeration are returned by a call to the [IDiaStackFrame::get_type](../../debugger/debug-interface-access/idiastackframe-get-type.md) method.

## Requirements
Header: cvconst.h

## See Also
[Enumerations and Structures](../../debugger/debug-interface-access/enumerations-and-structures.md)
[IDiaStackFrame::get_type](../../debugger/debug-interface-access/idiastackframe-get-type.md)