Share via


PROCESS_MITIGATION_ASLR_POLICY-Struktur (winnt.h)

Enthält Richtlinieneinstellungen für die Prozessminderung für das Layout der zufälligen Adressraumzuteilung (Address Space Randomization Layout, ASLR). Die Funktionen GetProcessMitigationPolicy und SetProcessMitigationPolicy verwenden diese Struktur.

Syntax

typedef struct _PROCESS_MITIGATION_ASLR_POLICY {
  union {
    DWORD Flags;
    struct {
      DWORD EnableBottomUpRandomization : 1;
      DWORD EnableForceRelocateImages : 1;
      DWORD EnableHighEntropy : 1;
      DWORD DisallowStrippedImages : 1;
      DWORD ReservedFlags : 28;
    } DUMMYSTRUCTNAME;
  } DUMMYUNIONNAME;
} PROCESS_MITIGATION_ASLR_POLICY, *PPROCESS_MITIGATION_ASLR_POLICY;

Member

DUMMYUNIONNAME

DUMMYUNIONNAME.Flags

Dieser Member ist für die Systemverwendung reserviert.

DUMMYUNIONNAME.DUMMYSTRUCTNAME

DUMMYUNIONNAME.DUMMYSTRUCTNAME.EnableBottomUpRandomization

DUMMYUNIONNAME.DUMMYSTRUCTNAME.EnableForceRelocateImages

DUMMYUNIONNAME.DUMMYSTRUCTNAME.EnableHighEntropy

DUMMYUNIONNAME.DUMMYSTRUCTNAME.DisallowStrippedImages

DUMMYUNIONNAME.DUMMYSTRUCTNAME.ReservedFlags

Anforderungen

Anforderung Wert
Unterstützte Mindestversion (Client) Windows 8 [nur Desktop-Apps]
Unterstützte Mindestversion (Server) Windows Server 2012 [nur Desktop-Apps]
Kopfzeile winnt.h (windows.h einschließen)