From 1e7c6d73c8f558668c6140d4a97fae0ad51d71eb Mon Sep 17 00:00:00 2001 From: Alistair Leslie-Hughes Date: Sun, 22 May 2022 16:09:23 +1000 Subject: [PATCH] include: Add THREAD_POWER_THROTTLING_STATE type. Signed-off-by: Alistair Leslie-Hughes --- include/processthreadsapi.h | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/include/processthreadsapi.h b/include/processthreadsapi.h index d266b7a727b..f2554950952 100644 --- a/include/processthreadsapi.h +++ b/include/processthreadsapi.h @@ -37,6 +37,13 @@ typedef struct _MEMORY_PRIORITY_INFORMATION ULONG MemoryPriority; } MEMORY_PRIORITY_INFORMATION, *PMEMORY_PRIORITY_INFORMATION; +typedef struct _THREAD_POWER_THROTTLING_STATE +{ + ULONG Version; + ULONG ControlMask; + ULONG StateMask; +} THREAD_POWER_THROTTLING_STATE; + WINBASEAPI HRESULT WINAPI GetThreadDescription(HANDLE,PWSTR *); WINBASEAPI HRESULT WINAPI SetThreadDescription(HANDLE,PCWSTR); WINBASEAPI BOOL WINAPI SetThreadInformation(HANDLE,THREAD_INFORMATION_CLASS,LPVOID,DWORD); -- 2.11.4.GIT