Kernel32GetCurrentThreadStackLimits Method
Retrieves the boundaries of the stack that was allocated by the system for the current thread.
Namespace: DevCase.Win32.NativeMethodsAssembly: DevCase.net48 (in DevCase.net48.dll) Version: 6.0.0.0 (6.0)
XMLNS for XAML: Not mapped to an xmlns.
[DllImportAttribute("Kernel32.dll", ExactSpelling = true)]
public static void GetCurrentThreadStackLimits(
out UIntPtr refLowLimit,
out UIntPtr refHighLimit
)
<DllImportAttribute("Kernel32.dll", ExactSpelling := true>]
Public Shared Sub GetCurrentThreadStackLimits (
<OutAttribute> ByRef refLowLimit As UIntPtr,
<OutAttribute> ByRef refHighLimit As UIntPtr
)
Dim refLowLimit As UIntPtr
Dim refHighLimit As UIntPtr
Kernel32.GetCurrentThreadStackLimits(refLowLimit,
refHighLimit)
public:
[DllImportAttribute(L"Kernel32.dll", ExactSpelling = true)]
static void GetCurrentThreadStackLimits(
[OutAttribute] UIntPtr% refLowLimit,
[OutAttribute] UIntPtr% refHighLimit
)
[<DllImportAttribute("Kernel32.dll", ExactSpelling = true)>]
static member GetCurrentThreadStackLimits :
refLowLimit : UIntPtr byref *
refHighLimit : UIntPtr byref -> unit
No code example is currently available or this language may not be supported.
Parameters
- refLowLimit UIntPtr
-
A pointer variable that receives the lower boundary of the current thread stack.
- refHighLimit UIntPtr
-
A pointer variable that receives the upper boundary of the current thread stack.