PROCESS_AFFINITY_UPDATE_MODE - NtDoc

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

/**
 * The PROCESS_AFFINITY_UPDATE_MODE union is used to specify the affinity update mode for a process.
 */
typedef struct _PROCESS_AFFINITY_UPDATE_MODE
{
    union
    {
        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;

#endif

View code on GitHub

NtDoc

No description available.