RtlFreeUserStack - NtDoc

Native API online documentation, based on the System Informer (formerly Process Hacker) phnt headers
#ifndef _NTRTL_H

/**
 * The RtlFreeUserStack routine frees a user-mode stack previously allocated for a thread.
 *
 * \param AllocationBase The base address of the stack allocation to free.
 * \return NTSTATUS Successful or errant status.
 */
NTSYSAPI
NTSTATUS
NTAPI
RtlFreeUserStack(
    _In_ PVOID AllocationBase
    );

#endif

View code on GitHub

NtDoc

No description available.