Skip to content

Latest commit

 

History

History
70 lines (58 loc) · 1.3 KB

File metadata and controls

70 lines (58 loc) · 1.3 KB
description title ms.date ms.topic f1_keywords helpviewer_keywords author ms.author manager ms.subservice dev_langs
Specifies the step kind for stepping.
STEPKIND
11/04/2016
reference
STEPKIND
STEPKIND enumeration
maiak
maiak
mijacobs
debug-diagnostics
CPP
CSharp

STEPKIND

Specifies the step kind for stepping.

Syntax

public enum enum_STEPKIND { 
   STEP_INTO      = 0,
   STEP_OVER      = 1,
   STEP_OUT       = 2,
   STEP_BACKWARDS = 3
};
enum enum_STEPKIND { 
   STEP_INTO      = 0,
   STEP_OVER      = 1,
   STEP_OUT       = 2,
   STEP_BACKWARDS = 3
};
typedef DWORD STEPKIND;

Fields

STEP_INTO
Steps into a function.

STEP_OVER
Steps over a function.

STEP_OUT
Steps out of a function.

STEP_BACKWARDS
Steps backward into a function.

Remarks

Passed as an argument to the Step method.

Requirements

Header: msdbg.h

Namespace: Microsoft.VisualStudio.Debugger.Interop

Assembly: Microsoft.VisualStudio.Debugger.Interop.dll

See also