IMAGE_INFO_EX - NtDoc

Native API online documentation, based on the System Informer (formerly Process Hacker) phnt headers
// ntddk.h

typedef struct _IMAGE_INFO_EX {
  SIZE_T              Size;
  IMAGE_INFO          ImageInfo;
  struct _FILE_OBJECT *FileObject;
} IMAGE_INFO_EX, *PIMAGE_INFO_EX;

View the official Windows Driver Kit DDI reference

NtDoc

No description available.

Windows Driver Kit DDI reference (ns-ntddk-_image_info_ex)

_IMAGE_INFO_EX structure

Description

IMAGE_INFO_EX is the larger, extended version of the IMAGE_INFO load image information structure.

Members

Size

Specifies the size, in bytes, of the IMAGE_INFO_EX structure.

ImageInfo

An IMAGE_INFO structure that specifies load image information.

FileObject

Pointer to the file object of the backing file for the image. The driver can take a reference to this object or use it for other operations.

Remarks

If the ExtendedInfoPresent flag is set in the IMAGE_INFO structure, the load image information is part of IMAGE_INFO_EX. In this case, the load-image notify routine can use the CONTAINING_RECORD macro (in miniport.h) to obtain the base address of the IMAGE_INFO_EX structure.

See also

IMAGE_INFO

PLOAD_IMAGE_NOTIFY_ROUTINE

PsSetLoadImageNotifyRoutine