#ifndef _NTPSAPI_H
/**
* The PROCESS_AFFINITY_UPDATE_MODE union is used to specify the affinity update mode for a process.
*/
typedef union _PROCESS_AFFINITY_UPDATE_MODE
{
ULONG Flags;
struct
{
ULONG EnableAutoUpdate : 1; // Indicates whether auto-update of affinity is enabled.
ULONG Permanent : 1; // Indicates whether the affinity update is permanent.
ULONG Reserved : 30; // Reserved for future use.
};
} PROCESS_AFFINITY_UPDATE_MODE, *PPROCESS_AFFINITY_UPDATE_MODE;
View code on GitHub
No description available.