STEPKIND

Specifies the step kind for stepping.

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

Members

  • 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 IDebugProcess3::Step method.

Requirements

Header: msdbg.h

Namespace: Microsoft.VisualStudio.Debugger.Interop

Assembly: Microsoft.VisualStudio.Debugger.Interop.dll

See Also

Reference

Enumerations (Visual Studio Debugging)

IDebugProcess3::Step