SYSTEM_FLUSH_INFORMATION - NtDoc

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

// private
typedef struct _SYSTEM_FLUSH_INFORMATION
{
    union
    {
        ULONG SupportedFlushMethods;
        struct
        {
            ULONG MethodAlwaysPresent : 1;   // 0x1
            ULONG MethodProcessorFeatureBit35 : 1; // 0x2
            ULONG MethodProcessorFeatureBit36 : 1; // 0x4
            ULONG ReservedMethods : 29;
        } DUMMYSTRUCTNAME;
    } DUMMYUNIONNAME;

    ULONG ProcessorCacheFlushSize;

    union
    {
        ULONGLONG SystemFlushCapabilities;
        struct
        {
            ULONGLONG NfitType7FlushCapable : 1; // 0x1
            ULONGLONG ReservedCapabilities : 63;
        } DUMMYSTRUCTNAME;
    } DUMMYUNIONNAME;

    ULONGLONG Reserved[2];
} SYSTEM_FLUSH_INFORMATION, *PSYSTEM_FLUSH_INFORMATION;

#endif

View code on GitHub

NtDoc

No description available.