SYSTEM_ACTIVITY_MODERATION_STATE - NtDoc

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

/**
 * The SYSTEM_ACTIVITY_MODERATION_STATE type contains the moderation state applied to an application,
 * with respect to background throttling, resource reduction, and related heuristics.
 *
 * \remarks The state may be assigned automatically by the system or explicitly overridden by the user.
 */
typedef enum _SYSTEM_ACTIVITY_MODERATION_STATE
{
    SystemActivityModerationStateSystemManaged, // The system applies heuristics based on the appropriate moderation behavior.
    SystemActivityModerationStateUserManagedAllowThrottling, // User allows the system to throttle the application.
    SystemActivityModerationStateUserManagedDisableThrottling, // User disables throttling for the application.
    MaxSystemActivityModerationState // Upper bound for validation; not a real state.
} SYSTEM_ACTIVITY_MODERATION_STATE;

#endif

View code on GitHub

NtDoc

No description available.