Udostępnij za pośrednictwem


DkmStackMemoryRange(UInt64, UInt64) Constructor

Definition

Initialize a new DkmStackMemoryRange value.

public:
 DkmStackMemoryRange(System::UInt64 StackBase, System::UInt64 StackLimit);
public:
 DkmStackMemoryRange(unsigned long long StackBase, unsigned long long StackLimit);
 DkmStackMemoryRange(unsigned long StackBase, unsigned long StackLimit);
public DkmStackMemoryRange (ulong StackBase, ulong StackLimit);
new Microsoft.VisualStudio.Debugger.CallStack.DkmStackMemoryRange : uint64 * uint64 -> Microsoft.VisualStudio.Debugger.CallStack.DkmStackMemoryRange
Public Sub New (StackBase As ULong, StackLimit As ULong)

Parameters

StackBase
UInt64

[In] The address where this thread's stack began. Since stacks grow down in Windows, these value will be larger than the limit.

StackLimit
UInt64

[In] The minimum address which is allocated in the stack's range.

Applies to