PROCESS_TEB_VALUE_INFORMATION - NtDoc

Native API online documentation, based on the System Informer (formerly Process Hacker) phnt headers
#ifndef _NTPSAPI_H
#if (PHNT_MODE != PHNT_MODE_KERNEL)

/**
 * The PROCESS_TEB_VALUE_INFORMATION structure contains information from the Thread Environment Block (TEB) for a specific thread.
 */
typedef struct _PROCESS_TEB_VALUE_INFORMATION
{
    ULONG ThreadId; // The identifier of the thread whose TEB is being queried or modified.
    ULONG TebOffset; // The offset within the TEB where the value is located.
    ULONG_PTR Value; // The value at the specified offset in the TEB.
} PROCESS_TEB_VALUE_INFORMATION, *PPROCESS_TEB_VALUE_INFORMATION;

#endif
#endif

View code on GitHub

NtDoc

No description available.