#ifndef _NTWMI_H
typedef struct _WMI_EXTENDED_THREAD_INFORMATION64
{
ULONG ProcessId;
ULONG ThreadId;
ULONG64 StackBase64;
ULONG64 StackLimit64;
ULONG64 UserStackBase64;
ULONG64 UserStackLimit64;
union
{
ULONG64 StartAddress64;
ULONG64 Affinity;
} DUMMYUNIONNAME;
ULONG64 Win32StartAddress64;
ULONG64 TebBase64;
ULONG SubProcessTag;
SCHAR BasePriority;
UCHAR PagePriority;
UCHAR IoPriority;
UCHAR Flags;
} WMI_EXTENDED_THREAD_INFORMATION64, *PWMI_EXTENDED_THREAD_INFORMATION64;
View code on GitHub
No description available.