Skip to content

Delete unnecessary spaces #2508

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 14, 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
84 changes: 42 additions & 42 deletions docs/extensibility/debugger/reference/code-path.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,54 +2,54 @@
title: "CODE_PATH | Microsoft Docs"
ms.date: "11/04/2016"
ms.topic: "conceptual"
f1_keywords:
f1_keywords:
- "CODE_PATH"
helpviewer_keywords:
helpviewer_keywords:
- "CODE_PATH structure"
ms.assetid: 2d4b2890-4c9d-47e1-83c0-df9c6436427f
author: "gregvanl"
ms.author: "gregvanl"
manager: jillfra
ms.workload:
ms.workload:
- "vssdk"
---
# CODE_PATH
Describes a method or function call.
## Syntax
```cpp
typedef struct tagCODE_PATH
BSTR bstrName;
IDebugCodeContext2* pCode;
} CODE_PATH;
```
```csharp
public struct CODE_PATH {
public string bstrName;
public IDebugCodeContext pCode;
}
```
## Members
bstrName
The name of the code path.
pCode
The [IDebugCodeContext2](../../../extensibility/debugger/reference/idebugcodecontext2.md) object that identifies where in the code to step into a function.
## Remarks
This structure is used to implement stepping into a function. [EnumCodePaths](../../../extensibility/debugger/reference/idebugprogram2-enumcodepaths.md) returns all the calls from the current location in the program being debugged. This structure represents one such call.
## Requirements
Header: msdbg.h
Namespace: Microsoft.VisualStudio.Debugger.Interop
Assembly: Microsoft.VisualStudio.Debugger.Interop.dll
## See Also
[Structures and Unions](../../../extensibility/debugger/reference/structures-and-unions.md)
[IDebugCodeContext2](../../../extensibility/debugger/reference/idebugcodecontext2.md)
[EnumCodePaths](../../../extensibility/debugger/reference/idebugprogram2-enumcodepaths.md)
Describes a method or function call.

## Syntax

```cpp
typedef struct tagCODE_PATH
BSTR bstrName;
IDebugCodeContext2* pCode;
} CODE_PATH;
```
```csharp
public struct CODE_PATH {
public string bstrName;
public IDebugCodeContext pCode;
}
```

## Members
bstrName
The name of the code path.

pCode
The [IDebugCodeContext2](../../../extensibility/debugger/reference/idebugcodecontext2.md) object that identifies where in the code to step into a function.

## Remarks
This structure is used to implement stepping into a function. [EnumCodePaths](../../../extensibility/debugger/reference/idebugprogram2-enumcodepaths.md) returns all the calls from the current location in the program being debugged. This structure represents one such call.

## Requirements
Header: msdbg.h

Namespace: Microsoft.VisualStudio.Debugger.Interop

Assembly: Microsoft.VisualStudio.Debugger.Interop.dll

## See Also
[Structures and Unions](../../../extensibility/debugger/reference/structures-and-unions.md)
[IDebugCodeContext2](../../../extensibility/debugger/reference/idebugcodecontext2.md)
[EnumCodePaths](../../../extensibility/debugger/reference/idebugprogram2-enumcodepaths.md)