#ifndef _NTWMI_H
//
// Image backed by pagefile event.
//
typedef struct _PERFINFO_IMAGELOAD_IN_PAGEFILE_INFO
{
PVOID FileObject;
ULONG DeviceCharacteristics;
USHORT FileCharacteristics;
union {
USHORT Flags;
struct {
USHORT ActiveDataReference : 1;
USHORT DeviceEjectable : 1;
USHORT WritableHandles : 1;
} DUMMYSTRUCTNAME;
} Flags;
} PERFINFO_IMAGELOAD_IN_PAGEFILE_INFO, *PPERFINFO_IMAGELOAD_IN_PAGEFILE_INFO;
View code on GitHub
No description available.