Skip to content

Delete unnecessary spaces #2563

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 15, 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
104 changes: 52 additions & 52 deletions docs/debugger/debug-interface-access/thunk-ordinal.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,64 +2,64 @@
title: "THUNK_ORDINAL | Microsoft Docs"
ms.date: "11/04/2016"
ms.topic: "conceptual"
dev_langs:
dev_langs:
- "C++"
helpviewer_keywords:
helpviewer_keywords:
- "Thunk_Ordinal enumeration"
ms.assetid: 026f98a9-36b8-41ef-8a72-12d7cbc2d362
author: "mikejo5000"
ms.author: "mikejo"
manager: jillfra
ms.workload:
ms.workload:
- "multiple"
---
# THUNK_ORDINAL
Designates thunk types.
## Syntax
```C++
typedef enum THUNK_ORDINAL { 
THUNK_ORDINAL_NOTYPE,
THUNK_ORDINAL_ADJUSTOR,
THUNK_ORDINAL_VCALL,
THUNK_ORDINAL_PCODE,
THUNK_ORDINAL_LOAD
// trampoline thunk ordinals - only for use in Trampoline thunk symbols
THUNK_ORDINAL_TRAMP_INCREMENTAL,
THUNK_ORDINAL_TRAMP_BRANCHISLAND,
} THUNK_ORDINAL;
```
## Elements
THUNK_ORDINAL_NOTYPE
Standard thunk.
THUNK_ORDINAL_ADJUSTOR
A `this` adjustor thunk.
THUNK_ORDINAL_VCALL
Virtual call thunk.
THUNK_ORDINAL_PCODE
P-code thunk.
THUNK_ORDINAL_LOAD
Delay load thunk.
THUNK_ORDINAL_TRAMP_INCREMENTAL
Incremental trampoline thunk (a trampoline thunk is used to bounce calls from one memory space to another).
THUNK_ORDINAL_TRAMP_BRANCHISLAND
Branch point trampoline thunk.
## Remarks
The values in this enumeration are returned from a call to the [IDiaSymbol::get_thunkOrdinal](../../debugger/debug-interface-access/idiasymbol-get-thunkordinal.md) method.
## Requirements
Header: cvconst.h
## See Also
[Enumerations and Structures](../../debugger/debug-interface-access/enumerations-and-structures.md)
[IDiaSymbol::get_thunkOrdinal](../../debugger/debug-interface-access/idiasymbol-get-thunkordinal.md)
Designates thunk types.

## Syntax

```C++
typedef enum THUNK_ORDINAL {
THUNK_ORDINAL_NOTYPE,
THUNK_ORDINAL_ADJUSTOR,
THUNK_ORDINAL_VCALL,
THUNK_ORDINAL_PCODE,
THUNK_ORDINAL_LOAD

// trampoline thunk ordinals - only for use in Trampoline thunk symbols
THUNK_ORDINAL_TRAMP_INCREMENTAL,
THUNK_ORDINAL_TRAMP_BRANCHISLAND,
} THUNK_ORDINAL;
```

## Elements
THUNK_ORDINAL_NOTYPE
Standard thunk.

THUNK_ORDINAL_ADJUSTOR
A `this` adjustor thunk.

THUNK_ORDINAL_VCALL
Virtual call thunk.

THUNK_ORDINAL_PCODE
P-code thunk.

THUNK_ORDINAL_LOAD
Delay load thunk.

THUNK_ORDINAL_TRAMP_INCREMENTAL
Incremental trampoline thunk (a trampoline thunk is used to bounce calls from one memory space to another).

THUNK_ORDINAL_TRAMP_BRANCHISLAND
Branch point trampoline thunk.

## Remarks
The values in this enumeration are returned from a call to the [IDiaSymbol::get_thunkOrdinal](../../debugger/debug-interface-access/idiasymbol-get-thunkordinal.md) method.

## Requirements
Header: cvconst.h

## See Also
[Enumerations and Structures](../../debugger/debug-interface-access/enumerations-and-structures.md)
[IDiaSymbol::get_thunkOrdinal](../../debugger/debug-interface-access/idiasymbol-get-thunkordinal.md)